aboutsummaryrefslogtreecommitdiff
path: root/main.go
blob: 0badd8805df0cf44b05bed71fcc92de553f02b8d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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)
}