Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Automa

Note

This project is still under development, more features will come. Interpreter may not be stable yet =P.

Automa is a Simple Automation Language developed in C#. Automa's over all functionality is for automation in your machine, Automa has atleast 7 instructions for automation.

Instructions

The Following instructions of Automa:

  • Write : Write to Console.
  • Read : Read Input
  • Variable : Declare variable
  • If : If Block which can be nested
  • Elif : Elif/Else if Block
  • Else : Else Block
  • Run : Run Block for running processes

Example Usage:


name = "Cortez"

Write("Hello World")

Write("Your name is $name")

country = Read("What is your home origin? ")

If(country == "USA")
{
Write("Good Choice!")

If(name == "Cortez")
{
Write("Nice Name")
}

}
Elif(country == "Greece")
{
Write("Also a good choice!")
}
Else
{
Write("Nice Country!")
}

task = Run("cmd /c dir")

Write("Result of Task $task")

CLI Usage:

To use Automa in the CommandLine, Simple do:

./Automa.exe run <path-to-.auto>

Installation

Note

To be added...

License

This project is under the License of GNU General Public Licesne V3, see LICENSE

About

A Simple Automation language made in C#.

Topics

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages