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.



49
50
51
# File 'lib/rust-calls.rb', line 49

def initialize(name)
    @name = name
end

Instance Method Details

#to_RObject



53
54
55
# File 'lib/rust-calls.rb', line 53

def to_R
    @name
end