mal-go/print/print.go

11 lines
109 B
Go

package print
import (
"fmt"
"mal-go/utils"
)
func Print(ast any) {
fmt.Println(utils.Stringify(ast))
}