LF (-- lineFeed)lineFeed: Known line-feed Text constant.This builtin has no inputs. It always pushes the fixed known Text value for a single line-feed character, equal to "\n".
LF is convenient when building known multi-line Text values from smaller pieces.
"\n".{} 0 {} [
"-- build multi-line text --" printCompilerMessage
"A" LF & "B" & printStack _:;
"-- same as \"\\n\" --" printCompilerMessage
LF "\n" = printStack _:;
0
] "main" exportFunction
-- build multi-line text --
"A
B"
-- same as "\n" --
TRUE
& builtin (prefix suffix -- text) Concatenates two known Text values.attribute builtin (attribute --) Consumes one known Text attribute string and produces no value.textSize builtin (text -- size) Returns the UTF-8 code-unit (byte) count of a Text value as known or unknown Natx; known NIL text is invalid.textSplit builtin (text -- characterList) Splits known Text by decoded UTF-8 characters into one-character Text items. Empty text yields the empty Tuple ().