From db3c0cd77bd3ac6ddaf09ef882de49fe3deda761 Mon Sep 17 00:00:00 2001 From: Attila Magyar Date: Sat, 19 Jun 2021 21:34:21 +0200 Subject: [PATCH] Update README.md --- README.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 550f921..f70881d 100644 --- a/README.md +++ b/README.md @@ -33,11 +33,10 @@ For example: 10 100 max . \ prints 100 ``` -The else part is optional. +The `else` part is optional. ```forth -: abs ( n -- absn ) - dup 0< if -1 * then ; +: abs ( n -- n ) dup 0< if -1 * then ; -10 abs . \ prints 10 ```