WOOO compiles all in one file! Dependencies resolved! Next up, C name mangeling for scoping

This commit is contained in:
Nathan Braswell
2015-03-11 01:58:10 -04:00
parent 9e9b4371da
commit 6a311fb237
14 changed files with 230 additions and 133 deletions

10
tests/test_string.krak Normal file
View File

@@ -0,0 +1,10 @@
import io;
import string;
|int| main() {
|string::string| str.construct("hello strings");
io::println(str);
return 0;
}