We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0f26f4a commit 0b5dc7eCopy full SHA for 0b5dc7e
app/Main.hs
@@ -6,11 +6,11 @@ import Lib (someFunc)
6
main :: IO ()
7
main = do
8
time <- F.getTime
9
- let pi = F.getPi
+ let foreignPi = F.getPi
10
let negPi = F.getNegPi
11
- let sum = F.negAdd 1 2
+ let foreignSum = F.negAdd 1 2
12
putStrLn $ show time
13
- putStrLn $ show pi
+ putStrLn $ show foreignPi
14
putStrLn $ show negPi
15
- putStrLn $ show sum
+ putStrLn $ show foreignSum
16
someFunc
0 commit comments