Last active
June 12, 2020 18:36
-
-
Save MarcelineVQ/e3920ce32738a655bd4351915a20dc81 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
do let a = dsfsd | |
b = dsfasdsd | |
c = sdfsdfsd !(foo b) | |
e = expr c | |
?sdfsd | |
do let a = dsfsd | |
b = dsfasdsd | |
z <- foo b | |
let c = sdfsdfsd z | |
e = expr c | |
?sdfsd | |
do a <- pure dsfsd | |
b <- pure dsfasdsd | |
z <- foo b | |
c <- pure (sdfsdfsd z) | |
e <- pure $ expr c | |
?sdfsd | |
do a <- pure dsfsd | |
b <- pure dsfasdsd | |
c <- sdfsdfsd <$> foo b | |
e <- pure $ expr c | |
?sdfsd |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment