and: foo 1; bar 2; qux 3 -> (and (foo 1) (bar 2) (qux 3))
Now that I'm more lenient toward parens, I'll probably simplify ":" and get rid of ";"
---
There is one other situation where I use ";" in Nulan: functions that continue on the next line:
$def foo; X Y -> ...
def foo -> x y ...