Help for this page

Select Code to Download


  1. or download this
    print "@a[0 .. 3] ",
        "@b[0, 1, 4, 2, 3]",
        "@c[3, 4, 0, 1, 4, 0] ",
         "@b[3, 0, 2, 3, 3, 4]\n";
    
  2. or download this
    @a = split //, "justin";
    @b = split //, "anthony";
    @c = split //, "peter";
    ...
        "@b[0, 1, 4, 2, 3]@c[3, 4]",
        "@c[0, 1, 4]$d[0]",
        "@b[3, 0]@d[2, 3]@c[3, 4]";