Quick Start
Write a file, run it. That is the whole page.
Hello
Create hello.echo:
echo
say("Hello, Echo!");bash
elang hello.echoOutput:
text
Hello, Echo!Plain diagnostics (no Rich panels):
bash
elang hello.echo --plainRules you hit immediately
- Statements end with
;. - Blocks use
{ }. Newlines do not end statements. - Indentation is not syntax (unlike Python).
Wrong:
echo
say("Hello, Echo!")Right:
echo
say("Hello, Echo!");