From 7f7253e7097a3103a71aa18ab91b67518f588baa Mon Sep 17 00:00:00 2001 From: Attila Magyar Date: Mon, 21 Jun 2021 22:53:33 +0200 Subject: [PATCH] Update README.md --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 60c3411..9465403 100644 --- a/README.md +++ b/README.md @@ -208,11 +208,12 @@ The quotation code is compiled into the enclosing word and bypassed by a jump. A A list is a dynamic, ordered data structed. -` \ creates a new empty list` +```forth + \ creates a new empty list``` -` dup 1 add \ creates an empty list and adds 1 to it.` +` dup 1 add \ creates an empty list and adds 1 to it` -`[ 1 2 3 ] \ creates a list with 3 elements.` +`[ 1 2 3 ] \ creates a list with 3 elements` `[ 1 2 3 ] peel \ unloads the items from the list to the data stack`