Help for this page

Select Code to Download


  1. or download this
    Title: "title from array"
    Author: "author from array"
    Date: "Date from array"
    
  2. or download this
    while (@title, @author, @date) {
        print join ': ', map shift @$_ // 'NULL', \@title, \@author, \@dat
    +e;
        print "\n";
        }