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.

15 lines
198 B

4 years ago
  1. Basics
  2. ------
  3. <!-- exec-raw cat examples/hello.pl -->
  4. #!/usr/bin/env perl
  5. print "Hello EngProd.\n";
  6. <!-- end -->
  7. <!-- exec -->
  8. $ ./examples/hello.pl
  9. Hello EngProd.
  10. <!-- end -->