AltoLang / Alto

Compiler in the works!
MIT License
3 stars 1 forks source link

REPL Improvements #63

Closed FilipToth closed 3 years ago

FilipToth commented 3 years ago

Changes

Meta-commands

Meta-commands can now be declared this way:

[MetaCommand("foo", description: "Test commnand...")]
private void EvaluateFoo()
{
    Console.WriteLine("bar");
}