ruby/sample/soap/scopesample/servant.rb
(no author) 330a8e51c5 This commit was manufactured by cvs2svn to create branch 'ruby_1_8'.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@7616 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2004-12-20 14:41:10 +00:00

18 lines
202 B
Ruby

class Servant
def self.create
new
end
def initialize
STDERR.puts "Servant created."
@task = []
end
def push(value)
@task.push(value)
end
def pop
@task.pop
end
end