Wiki

Changes between Version 8 and Version 9 of RubyLanguage

Show
Ignore:
Timestamp:
09/02/09 13:17:10 (15 years ago)
Author:
Chuck
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • RubyLanguage

    v8 v9  
    140140}}} 
    141141 
     142=== Library Calls === 
     143{{{ 
     144obj.class       # Ruby 
     145obj.typeOf      # Cobra has non-class types like struct and enum 
     146 
     147obj.to_s        # Ruby 
     148obj.toString    # Cobra 
     149 
     150Time.now        # Ruby 
     151DateTime.now    # Cobra 
     152 
     153x.abs           # Ruby 
     154x.abs           # Cobra has methods on numbers as well 
     155}}} 
     156 
     157 
    142158== See Also == 
    143159 
     
    145161 * LanguageTopics 
    146162 * HowToPrograms 
     163 * PrimitiveTypeMembers