Create strings with double quotes:
message := "Hello, World!"
name := "Alice"
empty := ""
Strings can contain any UTF-8 text. They're immutable, meaning you can't change individual characters after creation. To modify a string, you create a new one. This immutability makes strings safe to share between functions.