package main import ( "fmt" "os" "monkey/repl" ) func main() { fmt.Println("This is the Monkey programming language!") fmt.Println("Feel free to type in commands") repl.Start(os.Stdin, os.Stdout) }