You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
var y: i32 = add(10, x);
|
|
const x: i32 = add(12, 34);
|
|
|
|
test "global variables" {
|
|
assert(x == 46);
|
|
assert(y == 56);
|
|
}
|
|
|
|
fn add(a: i32, b: i32) i32 {
|
|
return a + b;
|
|
}
|
|
|
|
const std = @import("std");
|
|
const assert = std.debug.assert;
|