From 856c4b67431dff4fa05a86bea68ca2c0548a8b01 Mon Sep 17 00:00:00 2001 From: Attila Magyar Date: Sat, 19 Jun 2021 21:12:23 +0200 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2625684..e9be925 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ FCL is the programming language of an Android app called Forth Calculator. It is : fib ( n1 n2 -- n1 n2 n3 ) 2dup + ; : nfib ( n -- .. ) -> n ( local variable ) - 0 1 n { fib } times ; ( quotation ) + 0 1 { fib } n times ; ( quotation ) ``` Besides all the high-level features, FCL supports the traditional Forth programming structures and uses the same compilation model (compile/interpret mode, dictionary, immediate words, etc.) as traditional Forth systems.