Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    use strict;
    ...
        }
        return join "\n", $cube1, $cube2, $cube3, $cube4;
    }
    
  2. or download this
    #!/usr/bin/perl
    use strict;
    ...
        }
        return "@$cube1\n@$cube2\n@$cube3\n@$cube4";
    }
    
  3. or download this
    #!/usr/bin/perl
    use strict;
    ...
        }
        return \@rot;
    }