diff --git a/README.md b/README.md index af77446..f3f99d0 100644 --- a/README.md +++ b/README.md @@ -20,6 +20,7 @@ stderr. * any number `` -> push the numeric value of n * any character `''` -> push c as its escaped ascii value +* a string `"string"` -> only valid in combination with an `out` afterwards * `&` -> pop and store it in a variable * `@` -> load variable and push it, does not consume the variable @@ -47,6 +48,7 @@ stderr. * `out` -> pop and output it to the console as ascii * `nout` -> pop and output as a number to the console * `in` -> push input char as ascii to the stack +* `"" out` -> prints the string ### Control flow