Lines Matching refs:a
4 Update scripts (from donut onwards) are written in a new little
6 the old one ("amend"). This is a brief overview of the new language.
8 - The entire script is a single expression.
25 - When used as a boolean, the empty string is "false" and all other
36 - ";" is a binary operator; evaluating it just means to first evaluate
51 "a b"
52 a + " " + b
53 "a" + " " + "b"
54 "a\x20b"
55 a + "\x20b"
56 concat(a, " ", "b")
57 "concat"(a, " ", "b")
62 ("con" + "cat")(a, " ", b) # syntax error!
105 concat(a;b;c, d, e;f) # evaluates to "cdf"