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

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)