More work on grammer and standard library! It can kinda load grammer now! Kinda. Marcus ran into the function pointer returns pointer ambiguity, so that'll have to be done tomorrow.

This commit is contained in:
Nathan Braswell
2015-07-04 03:21:36 -04:00
parent b62c3e729f
commit 54721b4284
11 changed files with 149 additions and 4 deletions

View File

@@ -22,6 +22,7 @@ fun main(): int {
io::println(newWay)
io::println( string::string("yes") == string::string("yes") )
io::println( string::string("no") == string::string("yes") )
string::string("2\nlines").lines().for_each(fun(i: string::string) io::println(i);)
return 0;
}