7 lines
89 B
Haskell
7 lines
89 B
Haskell
module Main where
|
|
|
|
g x y = x /= y
|
|
|
|
main = do {
|
|
(print(g 2 2));
|
|
} |