package main import ( "fmt" "monkey/pkg/repl" "os" ) func main() { fmt.Printf("Welcome to monkey's REPL.") repl.Start(os.Stdin, os.Stdout) }