sandwich

A funny programming language written in Rust
git clone https://tilde.team/~karx/sandwich.git
Log | Files | Refs | README | LICENSE

commit 66f5f3f9a350cb1071300eafd6c17d692832faf2
parent 761600a75915407c8c8fb1d6b5f8488a9c98a2f4
Author: ~karx <karx@tilde.team>
Date:   Wed, 10 Feb 2021 20:50:14 +0000

Fix typo in README

Diffstat:
MREADME.md | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/README.md b/README.md @@ -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: