Module: ReversePolishCalculator::Helpers
- Defined in:
- lib/reverse-polish-calculator/helpers.rb
Class Method Summary collapse
Class Method Details
.multi_puts(*strings) ⇒ Object
4 5 6 7 8 |
# File 'lib/reverse-polish-calculator/helpers.rb', line 4 def self.multi_puts(*strings) return if $in_unit_spec_suite strings.each {|str| puts str } puts end |