Yet another scripting language.
Ede is designed to be easy to learn and use, with a simple, lightweight syntax and support for common programming constructs such as variables, loops, and conditionals. The name "ede" means "language" in Yoruba, a language spoken in West Africa.
The inspiration for writing Ede came from the book Writing An Interpreter In Go. Ede employs a go-like syntax, albeit untyped, and also from other languages.
To install ede, you will need to have Go installed on your system. You can then use the following command:
go get github.com/username/ede
To get started with ede, create a new file with the extension .ede and start writing code! Here is a simple example that prints "Hello, World!" to the console:
println("Hello, World!")
You can then run your code using the following command:
ede filename.ede
Ede supports syntax highlighting for vscode. To enable it, copy the folder ede-vscode
to your vscode extensions folder.
- Set algebra
- Compile to bytecode
- Is Type (e.g. is string, is number, is bool)