The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
//package pt.v1.tea.testapp;

class MainProgram {

    public static void main(String[] args) {
        try {
            void a = {
                         System.out.println("ola");
                     }
                     ;
            exec(a);
        } catch(Exception e) {
            System.out.println(e.getMessage());
        }
    }

}