ESC!
Jump to navigation
Jump to search
ESC! is an esolang created by User:Ractangle
Syntax
| Command | Action |
|---|---|
| \$...\ | Makes a string and push it into the stack |
| \^...\ | Appends an interger to the stack |
| \&...\ | Duplicates the n th value on the stack |
| \*...\ | Prints the n th value on the stack |
| \?...|(code)\ | If the top value on the stack equal to the n th element on the stack, then do code. Otherwise skip the conditional |
| ; | Command spliter |
| \: | Halt program |
| \. | Start program |
Examples
Hello, world!
\. ; \$Hello, world!\ ; \*\ ; \: