Very naive REPL

This commit is contained in:
2025-10-21 21:52:16 +01:00
parent d52f8bcfa5
commit ba3dcebb27
4 changed files with 131 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
package repl
import (
"strings"
)
func parseInput(args string) []string {
return strings.Split(args, " ")
}