root/t/macros/operator_macros.t

Revision 20490, 158 bytes (checked in by Auzon, 8 months ago)

s/use v6-alpha;$/use v6;/;
Also catching a few other mentions of v6-alpha.

  • Property svn:mime-type set to text/plain; charset=UTF-8
  • Property svn:eol-style set to native
Line 
1use v6;
2
3use Test;
4
5plan 1;
6
7macro postfix:<!> (Int $n) {
8    my $factorial = [*] 1..$n;
9    return "$factorial + 0";
10}
11
12is 3!, 6, "macro postfix:<!> works";
Note: See TracBrowser for help on using the browser.