Class: Rust::Variable

Inherits:
Object show all
Defined in:
lib/rust/core/types/language.rb

Instance Method Summary collapse

Constructor Details

#initialize(name) ⇒ Variable

Returns a new instance of Variable.



138
139
140
# File 'lib/rust/core/types/language.rb', line 138

def initialize(name)
    @name = name
end

Instance Method Details

#to_RObject



142
143
144
# File 'lib/rust/core/types/language.rb', line 142

def to_R
    @name
end