compiler-design-eth/javali_tests/HW4_nop90/method invocation/OkMethod.javali
2020-01-15 22:38:07 +01:00

19 lines
194 B
Text

// call a simple method and use its return value
class Main {
void main() {
int a,b;
C c;
c = new C();
a = 5;
b = c.aux(a);
}
}
class C{
int aux(int arg){
return arg*2;
}
}