Fix typo in README
continuous-integration/drone/push Build is passing Details

This commit is contained in:
~karx 2021-02-10 20:50:14 +00:00
parent 761600a759
commit 66f5f3f9a3
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ The currently available opcodes are as follows:
- `p` - print out the arguments: `pHello World!` prints "Hello World!"
- `a`, `s`, `m`, `d` - add, subtract, multiply, and divide, respectively: `a2-2` adds 2 + 2.
- `l` - declare a variable: `lv9` declares variable `v` with value `9`; doing `p$v` prints out 9.
- `f` - declare a function: see [Functions](#make-a-pull-request) for more info
- `f` - declare a function: see [Functions](#functions) for more info
- `#` - comment: the interpreter will skip this line.
Here's an example "Hello world" program: