ruby/symbol.rb
2023-02-19 14:26:34 -08:00

14 lines
159 B
Ruby

class Symbol
# call-seq:
# to_sym -> self
#
# Returns +self+.
#
# Related: String#to_sym.
def to_sym
self
end
alias intern to_sym
end