12 lines
188 B
Plaintext
12 lines
188 B
Plaintext
; status: formatter-canonical
|
|
; Scope: current strict supported syntax only.
|
|
|
|
(module main)
|
|
|
|
(fn add ((a i32) (b i32)) -> i32
|
|
(+ a b))
|
|
|
|
(fn main () -> i32
|
|
(print_i32 (add 20 22))
|
|
0)
|