Lines Matching refs:to
5 scripting language ("edify") that is superficially somewhat similar to
16 underscores, slashes, and periods don't need to be in double quotes.
36 - ";" is a binary operator; evaluating it just means to first evaluate
40 - Comments start with "#" and run to the end of the line.
47 quotes are only needed if you want characters like whitespace to
48 appear in the string. The following expressions all evaluate to the
67 true. There is also some syntactic sugar to make expressions that
78 # evaluates to false
83 The last example is equivalent to:
89 second argument only if it's needed to determine the truth of the
101 - The purpose of ";" is to simulate imperative statements, of course,
105 concat(a;b;c, d, e;f) # evaluates to "cdf"