go-zig-compiler/tests/basic/multiple_prints.go
Luke Wilson bea04d6810 Add comprehensive test system for Go-to-Zig compiler
- 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
2025-06-05 22:36:38 -05:00

8 lines
87 B
Go

package main
func main() {
print("First")
print(" ")
print("Second")
print("\n")
}