Legend:
- Unmodified
- Added
- Removed
-
ChangeLog
r13263 r13264 10 10 = Changes for 6.28.0 (rXXXXX) - July XX, 2006 11 11 12 # Agent Zhang processed r13048 ~ r13261 (not including fglock's work) 12 # Agent Zhang has reviewed r12962 ~ r13261 13 # (not including fglock's work) 13 14 14 15 == New Perl 6 modules … … 120 121 * Added support for the "%b" modifier in `sprintf` and `fmt`, which 121 122 requires parrot due to use of rules. 123 * The following code is no longer allowed: 124 my $x; 125 { 126 $x = 1; 127 my $x = 2; 128 } 129 * "role A does A" is not allowed anymore. 122 130 * Initial support for Capture and Signature objects. 123 131 ** Support for: … … 128 136 Note that this is not strictly correct for "state T $x", but 129 137 let's do it this way for now. 130 138 ** Handle named parameters in Signatures. 139 :( :$justify ) # which is shorthand for... 140 :( :justify($justify) ) # but you can also say 141 :( :justify($justification) ) # the long name is used inside body; 142 # the short name by callers 131 143 XXX audreyt and gaal? 132 144
