This commit is contained in:
acute_interpreter_panic
2025-10-10 13:21:04 +02:00
parent c7fceb277d
commit 1ff37517a5
2 changed files with 6 additions and 1 deletions

View File

@@ -154,6 +154,8 @@ func Shell(commandsList ...[]string) {
} else { } else {
command = commands[0] command = commands[0]
commands = commands[1:] commands = commands[1:]
fmt.Println("> " + command)
} }
store, err = interpretCommand(strings.TrimSpace(command), store) store, err = interpretCommand(strings.TrimSpace(command), store)

View File

@@ -5,5 +5,8 @@ import (
) )
func main() { func main() {
cli.Shell() cli.Shell([]string{
"#a Crystal F",
"20",
})
} }