Port many tests and fix small bugs revealed in Kalypso (passes 24/72) - tests have also revealed more extensive features not yet implemented, and I seem to have messed up a test or two so that the C++ version also fails a couple more (it's at 59/71 now). Will investigate

This commit is contained in:
Nathan Braswell
2016-02-07 16:22:55 -05:00
parent 6aeb5c33f5
commit 11eba1ba07
39 changed files with 99 additions and 76 deletions

View File

@@ -1,10 +1,10 @@
import io;
import simple_print;
var a: int = 42;
var b = "hi";
fun main(): int {
io::println(a);
io::println(b);
simple_print::println(a);
simple_print::println(b);
return 0;
}