rubyx/lib/vool/assignment_statement.rb

12 lines
210 B
Ruby
Raw Normal View History

2017-04-01 20:28:57 +02:00
module Vool
class Assignment < Statement
attr_accessor :name , :value
2017-04-02 11:59:07 +02:00
def initialize(name , value )
@name , @value = name , value
2017-04-01 20:28:57 +02:00
end
end
2017-04-02 11:59:07 +02:00
class LocalAssignment < Assignment
2017-04-01 20:28:57 +02:00
end
2017-04-02 11:59:07 +02:00
2017-04-01 20:28:57 +02:00
end