• + 0 comments
    void printArray(Object[] arr) {
        for(Object obj:arr) {
            System.out.println(obj);
        }
    }