rubyx/lib/vool/send_statement.rb

10 lines
179 B
Ruby
Raw Normal View History

2017-04-01 20:28:57 +02:00
module Vool
2017-04-02 11:59:07 +02:00
class SendStatement < Statement
2017-04-01 20:28:57 +02:00
attr_accessor :name , :receiver , :arguments
2017-04-02 17:25:30 +02:00
def initialize(name)
@name = name
@arguments = []
2017-04-02 17:25:30 +02:00
end
2017-04-01 20:28:57 +02:00
end
end