Mostly implemented Simultaneous Declaration, only template instantation during pass 2 remains to be implemented

This commit is contained in:
Nathan Braswell
2014-05-24 14:04:32 -04:00
parent 0f6b6c0c67
commit ae9e652f1e
10 changed files with 461 additions and 30 deletions

View File

@@ -0,0 +1,17 @@
import io;
int ret1() {
return ret2() / 2;
}
int main() {
print(ret1());
print(ret2());
print("\n");
return 0;
}
int ret2() {
return 2;
}