From df00bdaf14c775372f90fedaeea32156c6a7f4ec Mon Sep 17 00:00:00 2001 From: Attila Magyar Date: Mon, 21 Jun 2021 23:22:53 +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 03b6e82..f36d953 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ The syntax is a superset of the Forth language. In FCL there are literal syntax ## Low-level control structures -FCL supports the traditional Forth conditionals (`if` and `case`) and loops (`do`, `while`, `until`). These are immediate words whose compilation semantics are to append the proper JUMP primitives to the current definition. FCL compiles high level threaded code, where executiontokens are method references of host language (Java). +FCL supports the traditional Forth conditionals (`if` and `case`) and loops (`do`, `while`, `until`). These are immediate words whose compilation semantics are to append the proper JUMP primitives to the current definition. FCL compiles high level threaded code, where execution tokens are method references of host language (Java). General form of `if else then`.