Class: Rust::Variable

Inherits:
Object show all
Defined in:
lib/rust-calls.rb

Instance Method Summary collapse

Constructor Details

#initialize(name) ⇒ Variable

Returns a new instance of Variable.



38
39
40
# File 'lib/rust-calls.rb', line 38

def initialize(name)
    @name = name
end

Instance Method Details

#to_RObject



42
43
44
# File 'lib/rust-calls.rb', line 42

def to_R
    @name
end