Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    my @items = split /:/, $line;
    
    print "$_\n" foreach (@items);
    
  2. or download this
    my @items = split(/:/, $line);
    
    print('just ', 'like ', 'this ', ':-)')