# HG changeset patch # User Christian Urban # Date 1639482031 0 # Node ID d59bcff69998f4f639379864782c47455780d28a # Parent 3ea5ba4bc3b4dc64604cc21c0e8c8b6cb0d7dbb1 updated diff -r 3ea5ba4bc3b4 -r d59bcff69998 progs/glue.sc --- a/progs/glue.sc Thu Dec 09 00:07:51 2021 +0000 +++ b/progs/glue.sc Tue Dec 14 11:40:31 2021 +0000 @@ -46,7 +46,7 @@ val tks = tokenise(os.read(path)) val ast = parse_tks(tks) compile_to_file(ast, class_name) - os.proc("java", s"${class_name}/${class_name}").call(stdout = os.Inherit) + os.proc("java", s"${class_name}/${class_name}").call(stdout = os.Inherit, stdin = os.Inherit) println(s"done.") }