codegen: handle exceptions of a method
[mate.git] / tests / DifferentClass1.java
index ec397f1f99c87944a9c78734d654078f234b0040..dbe95d899b486b1717c9497c3710ef002ed8cf08 100644 (file)
@@ -2,7 +2,7 @@ package tests;
 
 public class DifferentClass1 {
        public static void main(String[] args) {
-               Fib.fib(5);
-               Fib.fib(6);
+               System.out.printf("result: 0x%08x\n", Fib.fib(5));
+               System.out.printf("result: 0x%08x\n", Fib.fib(6));
        }
 }