Changes between Version 6 and Version 7 of Keywords
- Timestamp:
- 09/27/13 00:33:20 (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Keywords
v6 v7 25 25 The methods and properties of a class, struct or interface can use keywords as their names. For example, you can create a property called "lock" or a method called "branch". This is possible because in Cobra, properties and methods are always accessed through a dot (.) such as "obj.foo", unless the member name starts with an underscore such "_foo" which can be invoked directly. Obviously a method that starts with an underscore will not coincide with any keyword above. 26 26 27 == To Do == 28 29 Like C#, Cobra has "virtual keywords" which are words that are only keywords in specific situations. We need to identify those. 30 31 27 32 == See Also == 28 33