From 864d446b9fc9ea3f0290834d8e4ccfe26f952731 Mon Sep 17 00:00:00 2001 From: Attila Magyar Date: Sat, 19 Jun 2021 21:35:24 +0200 Subject: [PATCH] Update README.md --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index f70881d..dba12d5 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,8 @@ For example: The `else` part is optional. ```forth -: abs ( n -- n ) dup 0< if -1 * then ; +: abs ( n -- n ) + dup 0 < if -1 * then ; -10 abs . \ prints 10 ```