class Rucc::Operator

Attributes

str[R]

Public Class Methods

new(name, str) click to toggle source
# File lib/rucc/operator.rb, line 3
def initialize(name, str)
  @name = name
  @str  = str
end

Public Instance Methods

to_s() click to toggle source
# File lib/rucc/operator.rb, line 9
def to_s
  @str
end