blob: 91e2e5f7692612fa149ca33d3f93a84451733937 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
export executable "test-multiple-files";
import "std.zig";
import "foo.zig";
pub fn main(args: [][]u8) -> %void {
private_function();
%%stdout.printf("OK 2\n");
}
fn private_function() {
print_text();
}
|