🌌 Aurora's just for studying programming language concepts
⚠ Don't use it to develop something that'll go to production environment
$ go install -v github.com/guiferpa/aurora/cmd/aurora@main
🎈 So far there's no an easier way to download aurora binary. Use Go to install, it's the better way for while.
$ aurora repl
>> ident a = 1_000;
>> a + 1;
= 1001
ident result = 10 * 20;
print result + 1;
$ aurora run ./<file>.ar
[0 0 0 0 0 0 0 201]
🎈 Unfortunately, this project there's are not contributors enough to make this doc better but be my guest to discovery how to write some code looking at examples folder.
🚀 Feel free to try Aurora with playground built with WebAssembly + Go (Aurora source code)
$ aurora help
Usage:
aurora [command]
Available Commands:
build
completion Generate the autocompletion script for the specified shell
eval
help Help about any command
repl
run
version
Flags:
-h, --help help for aurora
Use "aurora [command] --help" for more information about a command.
All commands it'll show deep dive in instructions and evaluating
$ aurora repl --debug
$ aurora run --debug ...