diff options
author | Owen Rodda <owen.rodda@gmail.com> | 2015-12-27 16:29:52 -0500 |
---|---|---|
committer | Owen Rodda <owen.rodda@gmail.com> | 2015-12-27 16:29:52 -0500 |
commit | e31dc8b5a7937d25a681747d05b6227d63849c6d (patch) | |
tree | e2b9b13c5cbeca1c14fd2149a98a940d0980762e | |
parent | b2133b532b0e8bc0ae6e704633b56743eaa9b339 (diff) |
Fix #2040
-rw-r--r-- | perl6.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl6.html.markdown b/perl6.html.markdown index 1829f964..323bc0b3 100644 --- a/perl6.html.markdown +++ b/perl6.html.markdown @@ -103,7 +103,7 @@ sub say-hello-to(Str $name) { # You can provide the type of an argument ## It can also have optional arguments: sub with-optional($arg?) { # the "?" marks the argument optional - say "I might return `(Any)` (Perl's "null"-like value) if I don't have + say "I might return `(Any)` (Perl's 'null'-like value) if I don't have an argument passed, or I'll return my argument"; $arg; } |