defn add x y = { x + y }
defn double x = { add x x }
defn main = { double 163 }