Changes between Version 1 and Version 2 of CobraSyntaxHilights
- Timestamp:
- 01/12/14 04:05:27 (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
CobraSyntaxHilights
v1 v2 1 1 = Cobra Code Examples = 2 2 3 Some highlights of Cobra code and syntax ( on .Net) 4 5 Here are the cobra code samples for the same items for a3 Some highlights of Cobra code and syntax ( on .Net). 4 5 These are selected cobra code samples for the same items as in 6 6 [http://www.harding.edu/fmccown/vbnet_csharp_comparison.html VB and C# comparison]. 7 7 … … 679 679 numbers.add(2) 680 680 numbers.add(4) 681 displayList<of int>(numbers)681 .displayList<of int>(numbers) 682 682 683 683 # Function can display any type of List … … 801 801 .name = name; 802 802 .version = 0; 803 }804 }805 803 806 804 class Shape … … 809 807 def move 810 808 has IsTested 811 //Do something...809 # Do something... 812 810 813 811 }}}