mirror of
https://github.com/compiler-explorer/compiler-explorer.git
synced 2026-09-16 10:59:29 -05: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
|