Improved REPL output

This commit is contained in:
obscuren
2014-05-19 16:32:45 +02:00
parent 16421106d4
commit 017bbbb582
5 changed files with 89 additions and 12 deletions

View File

@ -18,3 +18,7 @@ func (self *JSRepl) read() {
}
}
}
func (self *JSRepl) PrintValue(value otto.Value) {
fmt.Println(value)
}