- Implement end-to-end test runner for compilation and behavior tests - Add test cases for basic print functionality - Refactor translator to use proper AST generation - Remove redundant programs directory in favor of tests
6 lines
96 B
Zig
6 lines
96 B
Zig
const std = @import("std");
|
|
|
|
pub fn main() void {
|
|
std.debug.print("Hello, world\n", .{});
|
|
}
|