init repl with string passthru

This commit is contained in:
2025-11-02 03:48:53 -10:00
parent 143b17a6c1
commit bc3570ab3d
4 changed files with 40 additions and 22 deletions
+10
View File
@@ -0,0 +1,10 @@
package print
import (
"fmt"
"mal-go/utils"
)
func Print(ast any) {
fmt.Println(utils.Stringify(ast))
}