Last active
December 12, 2015 04:58
-
-
Save maximveksler/4718224 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
Prelude> :{ | |
Prelude| let abs x | |
Prelude| | x < 0 = 0 - x | |
Prelude| | otherwise = x | |
Prelude| :} | |
<interactive>:59:5: parse error (possibly incorrect indentation) |
glguy
commented
Feb 5, 2013
Prelude> :{
Prelude| let abs x
Prelude| | otherwise = x
Prelude| | x < 0 = 0 - x
Prelude| :}
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment