Symbols:
*
Symbols
*
Converting a String to Symbol
Given a String:
s = "something"
there are several ways to convert it to a Symbol:
s.to_sym
# => :something
:"#{s}"
# => :something