Advertisement
cwchen

[Perl 6] Creating a HelloWorld subroutine

Nov 15th, 2017
836
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Perl 6 0.05 KB | None | 0 0
  1. sub hello {
  2.     "Hello World".say;
  3. }
  4.  
  5. hello();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement