letwhere.hs 129 B

12345678
  1. module LETWHERE where
  2. printexp x y = print res
  3. where res = x ^ y
  4. printexp2 x y = let res = x ^ y
  5. in print res