feat: add help and exit commands

This commit is contained in:
Stevan Freeborn
2026-07-26 10:54:19 -05:00
parent b43c36ab4d
commit c78ff443a6
7 changed files with 301 additions and 2 deletions
+5 -2
View File
@@ -1,7 +1,10 @@
package main
import "fmt"
import (
"bufio"
"os"
)
func main() {
fmt.Println("Hello, World!")
runREPL(bufio.NewScanner(os.Stdin), os.Stdout, cleanInput)
}