diff options
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | NEWS | 7 |
2 files changed, 11 insertions, 0 deletions
@@ -1,3 +1,7 @@ +Fri Sep 4 09:52:58 2009 URABE Shyouhei <shyouhei@ruby-lang.org> + + * NEWS: forgot to mention about new looser splats. + Wed Sep 2 13:47:30 2009 Nobuyoshi Nakada <nobu@ruby-lang.org> * math.c (domain_check): simplified. @@ -11,6 +11,13 @@ with all sufficient information, see the ChangeLog file. === Lexical changes +* looser splat opetator + + You can write things like: + x, *y, z = a, *b, c + def foo(a, b=1, *c, d); end + But when you evaluate them, you will get exceptions. + * new hash immediates Ruby 1.9 style hash syntax e.g. { key: value } is now also supported |
