Skip to content

Instantly share code, notes, and snippets.

@truthadjustr
Created August 5, 2018 09:16
Show Gist options
  • Save truthadjustr/f3335e8280e677184a2c5b56db4df0c9 to your computer and use it in GitHub Desktop.
Save truthadjustr/f3335e8280e677184a2c5b56db4df0c9 to your computer and use it in GitHub Desktop.
understanding let
x = 5
q =
let
x = 2
y = 3
in x + y
r = let x = 2; y = 3; in x + y
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment