Link Search Menu Expand Document

Strings

Simple strings

Simple strings are the most basic kind of text. They start and end with single quotes '


foo = 'a simple string'

Complex strings

Complex strings are similar to simple strings, except they use double quotes " and support string interpolation


greeting = "hello"
object = "world"
sentence = "${greeting} ${world}"