learn.hs 175 B

1234567891011
  1. -- uppercase module naming sucks :|
  2. module LEARN where
  3. x = 10 * 5 + y
  4. myresult = x * 5
  5. y = 10
  6. -- space identation sucks :|
  7. foo x =
  8. let x = 20
  9. y = 400
  10. in (x+y)