The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
//package pt.v1.tea.testapp;

class MainProgram {

    public static void main(String[] args) {
        try {
            System.exit(new Integer(1));
        } catch(Exception e) {
            System.out.println(e.getMessage());
        }
    }

}