// mac.txt

: swap a b | t =
  t = a
  a = b
  b = t

to main =
  x = 1
  y = 2
  swap x y
