Advertisement
cwchen

[Perl 6] Subroutine with type info

Nov 15th, 2017
2,832
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Perl 6 0.08 KB | None | 0 0
  1. sub add-one(Int $n) of Int {
  2.     $n + 1;
  3. }
  4.  
  5. add-one(3) == 4 or die "Wrong value";
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement