In Files

  • scanf.rb

Methods

Class/Module Index [+]

Quicksearch

Kernel

Private Instance Methods

scanf(format, &b) click to toggle source

Scans STDIN for data matching format. See IO#scanf for details.

See Scanf for details on creating a format string.

You will need to require 'scanf' to use #scanf.

 
               # File scanf.rb, line 772
def scanf(format, &b) #:doc:
  STDIN.scanf(format ,&b)
end