summaryrefslogtreecommitdiff
path: root/main.go
blob: b759ba99f99d07df9b21af8d212e4811f744cd50 (plain)
1
2
3
4
5
6
7
8
9
10
11
package main

import (
	"os"

	"github.com/mewsen/interpreter/lexer/repl"
)

func main() {
	repl.Start(os.Stdin, os.Stdout)
}