7 lines
83 B
Haskell
7 lines
83 B
Haskell
module Main where
|
|
|
|
g = \x -> x*x
|
|
|
|
main = do {
|
|
(print(g 3));
|
|
} |