Skip to content

Commit fdb6bdb

Browse files
committed
prefer runtime
1 parent b1c30a8 commit fdb6bdb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

doc/Language/experimental.pod6

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,8 @@ say called() ~ " $called times";
8181
say called() ~ " $called times"; # OUTPUT: «Called 2 times␤Called 2 times␤»
8282
=end code
8383
84-
Since macros are expanded at parse time, C<$called> will be the result when run
85-
time starts, which is already C<2>, as printed. Initializing C<$called> with 0,
84+
Since macros are expanded at parse time, C<$called> will be the result when runtime
85+
starts, which is already C<2>, as printed. Initializing C<$called> with 0,
8686
however, will make this print C<Called 0 times> since that initialization is run
8787
I<after> the parse phase, when the macros are expanded.
8888

0 commit comments

Comments
 (0)