String Perl

#!/usr/bin/perl
use warnings;
use strict;
foreach (split "\n", <    Line 1
    Line 2
    Line 3
    LINES;
       print "Got: $_ \n";
}