Files
bear/examples/gen_debug.vr
T
2026-08-25 14:45:19 +02:00

10 lines
115 B
Plaintext

// debug: does the function work at all?
fn double(x) {
return x * 2
}
fn main() {
println(double(21))
}