pascalabcnet/TestSamples/Haskell_Samples/Where6.hs
Бондарев Иван e6e67c193c initial commit
2015-05-14 21:35:07 +02:00

8 lines
186 B
Haskell

module Main where
g z = z+(let h=1 in h+5)+((\x -> x*x+s)3)+(let h=1 in h+5)
where s = (let h=1 in h+5)+((\x -> x*x+((\z->z*z)5))3)
main = do {
(print(g 1));
}