class EleetScript::TrueNode

Public Instance Methods

eval(context) click to toggle source
# File lib/lang/interpreter.rb, line 228
def eval(context)
  context.root_ns["true"]
end
value() click to toggle source
# File lib/lang/nodes.rb, line 53
def value
  true
end