Last active
November 17, 2017 17:20
-
-
Save IronGremlin/4f5fdb4c1bec458cf3efd74ecb05f4ac to your computer and use it in GitHub Desktop.
vscode Apply hint bug
This file contains 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
module Derptastic where | |
someFunction :: IO () | |
someFunction = readFile (".aFile") >>= putStrLn | |
otherFunction :: (Num t, Eq t) => t -> t -> t | |
otherFunction a b | |
| a == 5 = b | |
| otherwise = a | |
thirdFunction :: Num t1 => t -> t1 | |
thirdFunction x = 5 | |
{-output file -} | |
module Derptastic where | |
otherFunction :: (Num t, Eq t) => t -> t -> t | |
someFunction = readFile ".aFile" >>= putStrLn | |
thirdFunction :: Num t1 => t -> t1 | |
thirdFunction x = 5 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment