* fix: correct append with variadic parameters and spread array * feat: add print builtin
9 lines
67 B
Go
9 lines
67 B
Go
package main
|
|
|
|
func main() {
|
|
print("hello")
|
|
}
|
|
|
|
// Output:
|
|
// hello
|