Update quick-start-guide.md

This commit is contained in:
2023-02-06 09:23:49 +11:00
committed by GitHub
parent f15e717500
commit 537ec5be24

View File

@@ -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. 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 ## Names and Variables