▼
A Worst Interpreter
1
Introduction
2
Data structures
3
Core operations
4
The End
5
Builtins
6
Exceptions
7
More builtins
8
Reading code
9
The entry point
10
Invocation
11
Program overview
12
License
← prev
up
next →
10
Invocation
This file is executable:
racket worst.rkt
You can compile it into a binary if you want:
raco exe -o rworst worst.rkt
You can also write executable scripts:
#!/path/to/rworst
This works because the default reader treats a shebang line as a comment.
← prev
up
next →