The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
public class arrays {
	static Object[] simple = new Object[1];
	static int[][] dual = new int[10][20];
	
	public static void main(String[] args) {
		System.out.println(simple.getClass().getName());
		System.out.println(dual.getClass().getName());
	}
}