Wooo! Fixed up remaining bugs in new syntax!

This commit is contained in:
Nathan Braswell
2015-05-09 06:24:56 -04:00
parent acf751c016
commit 87e1853713
47 changed files with 277 additions and 284 deletions

View File

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