diff options
author | ven <vendethiel@hotmail.fr> | 2015-12-28 01:54:03 +0100 |
---|---|---|
committer | ven <vendethiel@hotmail.fr> | 2015-12-28 01:54:03 +0100 |
commit | 2d746ee78113a3d176972822a8010fc0271df4b1 (patch) | |
tree | e2b9b13c5cbeca1c14fd2149a98a940d0980762e | |
parent | b2133b532b0e8bc0ae6e704633b56743eaa9b339 (diff) | |
parent | e31dc8b5a7937d25a681747d05b6227d63849c6d (diff) |
Merge pull request #2078 from owenr/master
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; } |