Foo.private :printf

Namespace
Methods
B
F
H
N
Q
Included Modules
Attributes
[R] i
Class Public methods
new(s='FOO')
# File sample/drb/drbm.rb, line 34
def initialize(s='FOO')
  @hoge = Hoge.new(s)
end
Instance Public methods
bar(n)
# File sample/drb/gw_ct.rb, line 10
def bar(n)
  yield(n) + yield(n)
end
foo(n)
# File sample/drb/gw_ct.rb, line 6
def foo(n)
  n + n
end
hello()
# File sample/drb/drbm.rb, line 38
def hello
  @hoge
end
quux()
# File sample/export.rb, line 13
def quux
  print "in QUUX "
  baz()
end