Minor typo: fixed curly bracket direction (} -> {)

This commit is contained in:
Jeff Erickson 2015-03-25 16:53:46 -04:00
parent 649e7b0f7a
commit 965d7972d1

View File

@ -560,7 +560,7 @@ subset VeryBigInteger of Int where * > 500;
multi sub sayit(Int $n) { # note the `multi` keyword here
say "Number: $n";
}
multi sayit(Str $s) } # a multi is a `sub` by default
multi sayit(Str $s) { # a multi is a `sub` by default
say "String: $s";
}
sayit("foo"); # prints "String: foo"