From 01ec314f77a25ba994b202f8b6d99ae4c01dfefa Mon Sep 17 00:00:00 2001 From: Attila Magyar Date: Sat, 10 Jul 2021 22:42:34 +0200 Subject: [PATCH] Update README.md --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.md b/README.md index 6b22b26..5131448 100644 --- a/README.md +++ b/README.md @@ -314,6 +314,15 @@ A list is a dynamic, ordered data structed. `[` and `]` are Forth words, so a wh ```forth [ 1 2 3 ] 2 * \ basic arithmetic with scalars work with lists, this will multiple each item with 2. ``` + +```forth +[ 1 2 3 ] minl \ selects the smallest item from the list +``` + +```forth +[ 1 2 3 ] maxl \ selects the largest item from the list +``` + ### Implementation notes