From ba61adf5c9ea750b814f3f0464dc3b4178b845d3 Mon Sep 17 00:00:00 2001 From: Attila Magyar Date: Sun, 20 Jun 2021 11:12:48 +0200 Subject: [PATCH] Update README.md --- README.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index b81555c..2edb44b 100644 --- a/README.md +++ b/README.md @@ -3,10 +3,8 @@ FCL is the programming language of an Android app called Forth Calculator. It is a Forth dialect with optional local variables, complex data structures, quotations and Java interoperability. ```forth -: fib ( n1 n2 -- n1 n2 n3 ) 2dup + ; - -: nfib ( n -- n* ) -> n ( local variable ) - 0 1 { fib } n times ; ( quotation ) +: fib ( n -- n* ) -> n ( local variable ) + 0 1 { 2dup + } 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.