Help for this page

Select Code to Download


  1. or download this
    .sub 'main' :main
        .local string name
    ...
        greeting .= "!" 
        say greeting
    .end
    
  2. or download this
    use Modern::Perl;
    use IO::Pty::Easy;
    ...
    is $output, "Hello, Brian!\n";
    
    $pty->close;