Sha256: 56a64f8c122fd3e1d2a517f4273478d5a8988930ea196f549b94daa090becd3e

Contents?: true

Size: 214 Bytes

Versions: 2

Compression:

Stored size: 214 Bytes

Contents

module Kernel
  def putsf(integer,*args)
    command_string=String.new
    args.each do |one_element|
      command_string+="%-#{integer}s"
    end
    command_string+="\n"
    printf command_string,*args
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
mpatch-1.3.0 lib/mpatch/kernel.rb
mpatch-1.2.0 lib/mpatch/kernel.rb