Changes between Version 8 and Version 9 of RubyLanguage
- Timestamp:
- 09/02/09 13:17:10 (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
RubyLanguage
v8 v9 140 140 }}} 141 141 142 === Library Calls === 143 {{{ 144 obj.class # Ruby 145 obj.typeOf # Cobra has non-class types like struct and enum 146 147 obj.to_s # Ruby 148 obj.toString # Cobra 149 150 Time.now # Ruby 151 DateTime.now # Cobra 152 153 x.abs # Ruby 154 x.abs # Cobra has methods on numbers as well 155 }}} 156 157 142 158 == See Also == 143 159 … … 145 161 * LanguageTopics 146 162 * HowToPrograms 163 * PrimitiveTypeMembers