[Nice-commit] Nice NEWS,1.19,1.20
Brought to you by:
bonniot
From: <bo...@us...> - 2004-02-09 11:46:13
|
Update of /cvsroot/nice/Nice In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12290 Modified Files: NEWS Log Message: Typo, and moved 'using' next to the new block syntax. Index: NEWS =================================================================== RCS file: /cvsroot/nice/Nice/NEWS,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** NEWS 30 Jan 2004 03:00:30 -0000 1.19 --- NEWS 9 Feb 2004 11:42:57 -0000 1.20 *************** *** 5,16 **** enum Coin(int value) implements Currency {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(); });' * Stricter parsing of expression used as statement. * Improved performance of arrays used as lists. * New methods (in package nice.functional) for working with iterators and generators. - * "using" statement, as in C#. * Fixed the file locations in the RPM package, and added automatic registration of the emacs mode for the SuSE Linux distribution. --- 5,17 ---- enum Coin(int value) implements Currency {penny(1), nickel(5), dime(10), quarter(25)} ! * Alternative syntax for calling methods that takes a closure with no arguments. For example 'loop(5) { doSomeThing(); }' is shorthand for 'loop(5, () => { doSomeThing(); });' + * "using" statement, as in C#, defined in nice.lang using (!) the above + syntax. * Stricter parsing of expression used as statement. * Improved performance of arrays used as lists. * New methods (in package nice.functional) for working with iterators and generators. * Fixed the file locations in the RPM package, and added automatic registration of the emacs mode for the SuSE Linux distribution. |