Changes between Version 4 and Version 5 of ReleaseNotes_0.9.5
- Timestamp:
- 12/07/13 19:58:13 (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ReleaseNotes_0.9.5
v4 v5 7 7 To get Cobra 0.9.5, visit [http://cobra-language.com/downloads/ Downloads]. 8 8 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.9 Below 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. 10 10 11 11 For even more details, browse the [http://cobra-language.com/trac/cobra/log/ revision log] which includes check-in comments and source code changes. … … 35 35 .show('bar', 5) 36 36 .show('baz', count = 3) 37 .show(s ='can', count = 2)37 .show(s = 'can', count = 2) 38 38 39 39 def show(s as String, count as int = 2) … … 62 62 == Compiler == 63 63 64 * Provide improved error checking on arguments of initializer/constructor calls.65 * Error checking enhancement: Confusing messageon 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. 66 66 * Fixed: An unfinished assignment statement causes an internal error instead of a normal error message ("unexpected end of file"). 67 67 * Fixed: Internal error for dynamic argument on a method overload.