Skip to content

Instantly share code, notes, and snippets.

@novodinia
Created January 7, 2014 21:52
Show Gist options
  • Save novodinia/8307571 to your computer and use it in GitHub Desktop.
Save novodinia/8307571 to your computer and use it in GitHub Desktop.
Prelude> :{
Prelude| let { x = 42 }
Prelude| let { y = 43 }
Prelude| :}
<interactive>:6:1: parse error on input `let'
Prelude> :{
Prelude| let { x = 42
Prelude| ; y = 43
Prelude| }
Prelude| :}
Prelude> :set +m
Prelude> let a = 1
Prelude| b = 2
Prelude|
Prelude> a
1
Prelude> b
2
Prelude>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment