3fe286b5ed
gets rid of attraccessor
10 lines
151 B
Ruby
10 lines
151 B
Ruby
module Vool
|
|
class ReturnStatement < Statement
|
|
attr_reader :return_value
|
|
|
|
def initialize(value)
|
|
@return_value = value
|
|
end
|
|
end
|
|
end
|