You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
405 B

4 years ago
  1. Basics - boilerplate edition
  2. ----------------------------
  3. <!-- exec-raw cat examples/hello_boilerplate.pl -->
  4. #!/usr/bin/env perl
  5. use warnings;
  6. use strict;
  7. use 5.10.0;
  8. say greet($ARGV[0]);
  9. sub greet {
  10. my ($greetee) = @_;
  11. return "Hello $greetee.";
  12. }
  13. <!-- end -->
  14. <!-- exec -->
  15. $ ./examples/hello_boilerplate.pl 'EngProd'
  16. Hello EngProd.
  17. <!-- end -->