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

16 lines
337 B
Haskell

module Main where
func x = if (x<3) then
do {
(print x+z);
}
else
do {
(print "Hello!");
}
where z=123
main = do {
(func 1);
(func 10);
}