Update of /cvsroot/nice/Nice/debian
In directory sc8-pr-cvs1:/tmp/cvs-serv11744/debian
Modified Files:
changelog
Log Message:
We should avoid speaking about "enhanced foo" in the changelog because:
1) Of course it's better! ;-)
2) What people what to know is what is new or different.
Index: changelog
===================================================================
RCS file: /cvsroot/nice/Nice/debian/changelog,v
retrieving revision 1.181
retrieving revision 1.182
diff -C2 -d -r1.181 -r1.182
*** changelog 20 Jun 2003 11:10:05 -0000 1.181
--- changelog 21 Jun 2003 09:03:55 -0000 1.182
***************
*** 31,36 ****
* Method bodies with a single statement can be written without brackets.
example: void foo() = throw new Exception;
! * Implemented the enhanced syntax for tuples in function declarations:
! String foo((String s, String t)) = s+t;
It also works for anonymous functions:
List<(String, int)> tuples = new ArrayList();
--- 31,36 ----
* Method bodies with a single statement can be written without brackets.
example: void foo() = throw new Exception;
! * It is possible to bind the values of tuple arguments to functions:
! String foo((String s, String t)) = s + t;
It also works for anonymous functions:
List<(String, int)> tuples = new ArrayList();
|