Changes between Version 2 and Version 3 of RubyLanguage
- Timestamp:
- 08/19/09 09:07:41 (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
RubyLanguage
v2 v3 47 47 }}} 48 48 49 === Instantiation === 50 Ruby: 51 {{{ 52 #!ruby 53 obj = SomeClass.new(arg1, arg2) 54 }}} 55 Cobra: 56 {{{ 57 #!python 58 obj = SomeClass(arg1, arg2) 59 }}} 60 49 61 See also: OtherLanguages, HowToPrograms, PythonLanguage