From d8f2549b29812bd38ea3115120627f0a8ea18915 Mon Sep 17 00:00:00 2001 From: nils <48135649+Nilstrieb@users.noreply.github.com> Date: Fri, 28 May 2021 15:31:01 +0200 Subject: [PATCH] Update README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) 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