Fix repl feedback
Some checks failed
Build / build (push) Successful in 9m50s
Test / build (push) Failing after 15m42s

This commit is contained in:
Chuck Smith
2024-03-19 20:46:18 -04:00
parent e320cd1e68
commit f735215c28
3 changed files with 47 additions and 10 deletions

View File

@@ -85,7 +85,7 @@ func Input(args ...Object) Object {
// Print ...
func Print(args ...Object) Object {
for _, arg := range args {
fmt.Println(arg.Inspect())
fmt.Println(arg.String())
}
return nil