diff options
-rw-r--r-- | src/content/chapter0_basics/lesson07_strings/code.gleam | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/content/chapter0_basics/lesson07_strings/code.gleam b/src/content/chapter0_basics/lesson07_strings/code.gleam index c77163e..fedcfff 100644 --- a/src/content/chapter0_basics/lesson07_strings/code.gleam +++ b/src/content/chapter0_basics/lesson07_strings/code.gleam @@ -11,6 +11,9 @@ pub fn main() { ) io.debug("\u{1F600}") + // Use io.println to see an escape sequence in action + io.println("\"X\" marks the spot") + // String concatenation io.debug("One " <> "Two") |