Concept
- `say` prints a value to standard output.
- Comments begin with `#`.
- Blocks are controlled by indentation rather than braces.
Example
# hello.se
say "Hello SE"
# Run: se run hello.se
# Check only: se check hello.seSE source files use .se. The smallest useful program can be a single say statement.
# hello.se
say "Hello SE"
# Run: se run hello.se
# Check only: se check hello.se