12 lines
185 B
Plaintext
12 lines
185 B
Plaintext
; status: compiler-supported
|
|
; Strict-manifest Glagol executable fixture.
|
|
|
|
(module main)
|
|
|
|
(fn add ((a i32) (b i32)) -> i32
|
|
(+ a b))
|
|
|
|
(fn main () -> i32
|
|
(print_i32 (add 20 22))
|
|
0)
|