Skip to content

Instantly share code, notes, and snippets.

@fecundf
Last active August 29, 2015 14:14
Show Gist options
  • Save fecundf/36ed214e649c3fd78b27 to your computer and use it in GitHub Desktop.
Save fecundf/36ed214e649c3fd78b27 to your computer and use it in GitHub Desktop.
#!/usr/bin/env perl
# Pragmas
use 5.020; # Also turns on "use strict" ever since 5.012
use warnings;
no warnings qw(experimental::signatures);
use feature qw(signatures);
# Using a signature means less work to set up arguments
sub main ($utterance) {
say $utterance;
}
main( "What a re-leaf!" ); # says it!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment