relation definitions and query statements.
query is how you “print”
Tide is currently side-effect-light: there isn’t a general-purpose print(...) builtin.
Instead, you use query to evaluate an expression and display its result:
query shows you the computed value.
Why this is nice
- keeps programs readable
- avoids IO semantics in the early alpha
- makes examples and docs consistent
print (or logging) can come later once the semantics are nailed down.