codegen: handle exceptions of a method
[mate.git] / tests / DifferentClass1.java
1 package tests;
2
3 public class DifferentClass1 {
4         public static void main(String[] args) {
5                 System.out.printf("result: 0x%08x\n", Fib.fib(5));
6                 System.out.printf("result: 0x%08x\n", Fib.fib(6));
7         }
8 }