sometimes i am pretty disappointed by Julia's lack of syntactic sugar: the standard tuple expression `(1, 2, 3)` has the internal LISP representation (tuple 1 2 3), but the explicit tuple constructor call `tuple(1, 2, 3)` is (call tuple 1 2 3) internally. imo it would have been cool it the former were syntactic sugar for the latter.