Fixed Kalypso's scope lookup to handle ::, ported another test (+ got another one from having proper scope operator)

This commit is contained in:
Nathan Braswell
2016-02-05 13:56:29 -05:00
parent 464805b7aa
commit 778e03a929
3 changed files with 33 additions and 5 deletions

View File

@@ -1,9 +1,9 @@
import io;
import simple_print;
fun nothing(): void {}
fun main(): int {
nothing();
io::println("It was nothing");
simple_print::println("It was nothing");
return 0;
}