mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
16 lines
209 B
Ruby
16 lines
209 B
Ruby
|
# $Id$
|
||
|
#
|
||
|
# scanf for Ruby
|
||
|
#
|
||
|
# Ad hoc tests of IO#scanf (needs to be expanded)
|
||
|
|
||
|
|
||
|
$:.unshift("..")
|
||
|
require "scanf.rb"
|
||
|
|
||
|
fh = File.new("data.txt", "r")
|
||
|
p fh.pos
|
||
|
p fh.scanf("%s%s")
|
||
|
p fh.scanf("%da fun%s")
|
||
|
p fh.pos
|