From c4cdf407c7b15ffca4c50edee3cced59711970fb Mon Sep 17 00:00:00 2001 From: Kayne Ruse Date: Sat, 11 Feb 2023 05:47:46 +1100 Subject: [PATCH] Update quick-start-guide.md --- quick-start-guide.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/quick-start-guide.md b/quick-start-guide.md index 99ba0b3..bd7bb36 100644 --- a/quick-start-guide.md +++ b/quick-start-guide.md @@ -6,10 +6,10 @@ Toy programs begin at the top of the file, and continue until the end, unless an ## Print Keyword -This keyword prints values to stdout for debugging (this can be altered by the host program), and usually has a newline appended to the end. +This keyword prints values to stdout for debugging (this can be altered by the host program). ``` -print "Hello World"; +print "Hello World\n"; ``` ## Names and Variables