Help for this page

Select Code to Download


  1. or download this
    print ("The second element  is $boxed[1]");
    All is fine and Bucket Man appears.
    
  2. or download this
    $data_path = "saved.data";
    $now = time();
    open(O, ">$data_path"); 
    print O "@boxed";
    close(O);
    
  3. or download this
    $data_file="saved.data";
    open(DAT, $data_file) || die("Could not open file!");
    @raw_data=<DAT>;
    close(DAT);