#!/usr/bin/env perl

use strict;
use English;

sub test() {
  print "Hello World!\n";
  return 1;
}

test();
