fixing my stupid mistake

This commit is contained in:
minjaesong
2020-06-10 14:53:26 +09:00
parent faa6f9182d
commit 655f955fc5
2 changed files with 10 additions and 7 deletions

View File

@@ -18,7 +18,7 @@ class VMJSR223Delegate(val vm: VM) {
vm.getPrintStream().write(s.toByteArray())
}
fun println(s: String) {
//System.out.println("[Nashorn] $s")
System.out.println("[Nashorn] $s")
vm.getPrintStream().write((s + '\n').toByteArray())
}
fun println() = print('\n')