Statement Perl

$loop_index = 1;
until ($loop_index > 10) {
    print "Hello!\n";
    $loop_index++;
}