mirror of
https://github.com/roc-lang/roc.git
synced 2025-12-22 08:08:28 +00:00
415 B
415 B
META
description=Simple string literal
type=expr
SOURCE
"hello world"
EXPECTED
NIL
PROBLEMS
NIL
TOKENS
StringStart,StringPart,StringEnd,
EndOfFile,
PARSE
(e-string
(e-string-part (raw "hello world")))
FORMATTED
NO CHANGE
CANONICALIZE
(e-string
(e-literal (string "hello world")))
TYPES
(expr (type "Str"))