module TablePrinter
Constants
- VERSION
Public Class Methods
table_printer(value, limit)
click to toggle source
# File lib/table_printer.rb, line 4 def self.table_printer(value, limit) for i in 1..limit puts "#{value} * #{i} = #{value * i}" end end