diff options
author | Louis Pilfold <louis@lpil.uk> | 2024-01-20 09:37:06 +0000 |
---|---|---|
committer | Louis Pilfold <louis@lpil.uk> | 2024-01-20 09:37:06 +0000 |
commit | 3bcc4ac8394246df4cee0e8480d321259463b5eb (patch) | |
tree | 44484601aa74644d4986f0f800072556f6558794 /src/content/chapter0_basics/lesson07_strings/code.gleam | |
parent | a6bb1761fd5b07f723ae060772ea5020ab2e63be (diff) | |
download | tour-3bcc4ac8394246df4cee0e8480d321259463b5eb.tar.gz tour-3bcc4ac8394246df4cee0e8480d321259463b5eb.zip |
Alter wording
Diffstat (limited to 'src/content/chapter0_basics/lesson07_strings/code.gleam')
-rw-r--r-- | src/content/chapter0_basics/lesson07_strings/code.gleam | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/content/chapter0_basics/lesson07_strings/code.gleam b/src/content/chapter0_basics/lesson07_strings/code.gleam index fedcfff..ea47e0f 100644 --- a/src/content/chapter0_basics/lesson07_strings/code.gleam +++ b/src/content/chapter0_basics/lesson07_strings/code.gleam @@ -11,7 +11,7 @@ pub fn main() { ) io.debug("\u{1F600}") - // Use io.println to see an escape sequence in action + // Double quote can be escaped io.println("\"X\" marks the spot") // String concatenation |