Wiki

Changes between Version 3 and Version 4 of RubyLanguage

Show
Ignore:
Timestamp:
08/19/09 09:09:41 (15 years ago)
Author:
Chuck
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • RubyLanguage

    v3 v4  
    1414 
    1515== Code Examples == 
    16  
    17 To learn the syntax further, see the HowToPrograms 
    1816 
    1917=== Class Declaration === 
     
    5957}}} 
    6058 
    61 See also: OtherLanguages, HowToPrograms, PythonLanguage 
     59=== Blocks === 
     60Ruby: 
     61{{{ 
     62#!ruby 
     63method do |arg| 
     64  <statements> 
     65end 
     66}}} 
     67Cobra: 
     68{{{ 
     69#!python 
     70.method(do(arg)) 
     71    <statements> 
     72}}} 
     73 
     74== See Also == 
     75 
     76 * OtherLanguages 
     77 * HowToPrograms 
     78 * PythonLanguage