progs/while-compiler-arrays/compile_bfc.sc
changeset 730 18fee9d3b6a8
parent 725 f345e89895f5
child 732 c7bdd7eac4cb
--- a/progs/while-compiler-arrays/compile_bfc.sc	Mon Jun 29 22:43:43 2020 +0100
+++ b/progs/while-compiler-arrays/compile_bfc.sc	Tue Jun 30 01:31:14 2020 +0100
@@ -243,7 +243,7 @@
   println(s"BF parsing (program length ${bf_string.length} characters)")
   val (time, bf_prog) = 
     time_needed(1, fastparse.parse(bf_string, Stmts(_)).get.value)
-  println(s"BF generated WHILE program (needed $time for parsing)")
+  println(s"BF generated WHILE program (needed $time secs for parsing)")
   compile_and_run(bf_prog, name)
 }