update draft
authorChristian Urban <christian.urban@kcl.ac.uk>
Tue, 30 Jun 2020 01:31:14 +0100
changeset 730 8405f15350b9
parent 729 81257df1591b
child 731 e21f904514dd
update
progs/while-compiler-arrays/compile_bfc.sc
--- 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)
 }