From 537ec5be24802873b8eac0520204ab927efacb4a Mon Sep 17 00:00:00 2001 From: Kayne Ruse Date: Mon, 6 Feb 2023 09:23:49 +1100 Subject: [PATCH] Update quick-start-guide.md --- quick-start-guide.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/quick-start-guide.md b/quick-start-guide.md index 5e16438..276c741 100644 --- a/quick-start-guide.md +++ b/quick-start-guide.md @@ -4,12 +4,12 @@ This guide is intended to get you writing Toy code as fast as possible. As such, Toy programs begin at the top of the file, and continue until the end, unless an error is encountered. -## Hello World +## Print Keyword -This prints to the stdout, and has a newline appended to the end. This can be altered by the host program. +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. ``` -print "Hello world"; +print "Hello World"; ``` ## Names and Variables