working towards compiling simple methods

This commit is contained in:
Joel Dice
2008-09-06 15:25:41 -06:00
parent e13b755048
commit ed806ca740
4 changed files with 334 additions and 38 deletions

7
test/Simple.java Normal file
View File

@ -0,0 +1,7 @@
public class Simple {
public static void main(String[] args) {
int a = 1;
int b = 2;
int c = a + b;
}
}