- 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
8 lines
136 B
Go
8 lines
136 B
Go
package main
|
|
|
|
func main() {
|
|
print("Hello\tWorld!\n")
|
|
print("Line 1\nLine 2\n")
|
|
print("Quote: \"test\"\n")
|
|
print("Backslash: \\\n")
|
|
} |