Update of /cvsroot/nice/Nice
In directory sc8-pr-cvs1:/tmp/cvs-serv10292/nice
Modified Files:
NEWS
Log Message:
Update of changelog (enum fields, block call syntax, bugs).
Index: NEWS
===================================================================
RCS file: /cvsroot/nice/Nice/NEWS,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** NEWS 16 Dec 2003 15:57:29 -0000 1.9
--- NEWS 17 Dec 2003 16:08:18 -0000 1.10
***************
*** 1,6 ****
nice (0.9.6)
! *
!
--
--- 1,11 ----
nice (0.9.6)
! * Additional fields can be defined for enums, example:
! enum Coin(int value) {penny(1), nickel(5), dime(10), quarter(25)}
! * Alternative syntax for calling methods that takes an closure with no
! arguments. For example 'loop(5) { doSomeThing(); }' is shorthand for
! 'loop(5, () => { doSomeThing(); });'
! * Bug fixes (checking of local variables in a call position, make it possible
! to use new Object() again, ... )
--
|