Changes between Version 6 and Version 7 of RubyLanguage
- Timestamp:
- 09/02/09 07:47:01 (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
RubyLanguage
v6 v7 112 112 }}} 113 113 114 === Conditionals === 115 Ruby: 116 {{{ 117 #!ruby 118 if x < y then puts x end 119 puts x if x < y 120 }}} 121 Cobra: 122 {{{ 123 #!python 124 if x < y, print x 125 if x < y, print x 126 }}} 127 114 128 == See Also == 115 129