File: Let3.in

package info (click to toggle)
frown 0.6.1-13
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 9,956 kB
  • sloc: haskell: 35,132; makefile: 228; csh: 35; yacc: 23
file content (5 lines) | stat: -rw-r--r-- 163 bytes parent folder | download | duplicates (6)
1
2
3
4
5
eval "2 + 7" :: IO Int
eval "a + b" :: IO Int
eval "let x = 4 in x * x" :: IO Int
eval "let x = 4 in x * x + x" :: IO Int
eval "(let x = 4 in x * x) + x" :: IO Int