module Klam::Primitives::Symbols

Public Instance Methods

intern(str) click to toggle source
# File lib/klam/primitives/symbols.rb, line 4
def intern(str)
  case str
  when 'true'
    true
  when 'false'
    false
  else
    str.intern
  end
end