Changes between Version 3 and Version 4 of RubyLanguage
- Timestamp:
- 08/19/09 09:09:41 (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
RubyLanguage
v3 v4 14 14 15 15 == Code Examples == 16 17 To learn the syntax further, see the HowToPrograms18 16 19 17 === Class Declaration === … … 59 57 }}} 60 58 61 See also: OtherLanguages, HowToPrograms, PythonLanguage 59 === Blocks === 60 Ruby: 61 {{{ 62 #!ruby 63 method do |arg| 64 <statements> 65 end 66 }}} 67 Cobra: 68 {{{ 69 #!python 70 .method(do(arg)) 71 <statements> 72 }}} 73 74 == See Also == 75 76 * OtherLanguages 77 * HowToPrograms 78 * PythonLanguage