Wiki

Changes between Version 4 and Version 5 of ReleaseNotes_0.9.5

Show
Ignore:
Timestamp:
12/07/13 19:58:13 (10 years ago)
Author:
Charles
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ReleaseNotes_0.9.5

    v4 v5  
    77To get Cobra 0.9.5, visit [http://cobra-language.com/downloads/ Downloads]. 
    88 
    9 Below are the changes included in this release. There are to-do minor refinements and to-do fixes. At this point, the Cobra language is very stable and we're mostly refining and fixing as we put it into practice. 
     9Below are the changes included in this release. There are 5 enhancements, 12 refinements, 17 fixes and new IDE support. At this point, the Cobra language is very stable and we're mostly refining and fixing as we put it into practice. 
    1010 
    1111For even more details, browse the [http://cobra-language.com/trac/cobra/log/ revision log] which includes check-in comments and source code changes. 
     
    3535        .show('bar', 5) 
    3636        .show('baz', count = 3) 
    37         .show(s='can', count = 2) 
     37        .show(s = 'can', count = 2) 
    3838 
    3939    def show(s as String, count as int = 2) 
     
    6262== Compiler == 
    6363 
    64  * Provide improved error checking on arguments of initializer/constructor calls. 
    65  * Error checking enhancement: Confusing message on missed `of` in generics call. 
     64 * Improved error checking on arguments of initializer/constructor calls. 
     65 * Improved error checking on missed `of` in generics call. 
    6666 * Fixed: An unfinished assignment statement causes an internal error instead of a normal error message ("unexpected end of file"). 
    6767 * Fixed: Internal error for dynamic argument on a method overload.