mirror of
https://github.com/compiler-explorer/compiler-explorer.git
synced 2026-05-16 16:02:45 -04:00
10 lines
100 B
Plaintext
10 lines
100 B
Plaintext
module example
|
|
|
|
import StdInt
|
|
|
|
square :: Int -> Int
|
|
square n = n * n
|
|
|
|
Start :: Int
|
|
Start = square 3
|