slovo/docs/language/examples/compat/v0/supported/add.slo
2026-05-22 08:38:43 +02:00

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)