From 1fdfd0ad26b5dda8181febdf6e87f8552b5cb661 Mon Sep 17 00:00:00 2001 From: Kayne Ruse Date: Fri, 17 Mar 2023 12:05:31 +1100 Subject: [PATCH] Don't need /n --- getting-started/quick-start-guide.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/getting-started/quick-start-guide.md b/getting-started/quick-start-guide.md index 8623f00..fc840a0 100644 --- a/getting-started/quick-start-guide.md +++ b/getting-started/quick-start-guide.md @@ -9,7 +9,7 @@ Toy programs begin at the top of the file, and continue until the end, unless an This keyword prints values to stdout for debugging (this can be altered by the host program). ``` -print "Hello World\n"; +print "Hello World"; ``` ## Names and Variables