Skip to content

Instantly share code, notes, and snippets.

@CafeFerguson
Last active August 29, 2015 14:18
Show Gist options
  • Save CafeFerguson/b66bb870e49a5bc4b3a6 to your computer and use it in GitHub Desktop.
Save CafeFerguson/b66bb870e49a5bc4b3a6 to your computer and use it in GitHub Desktop.
Symbol to String Problem
strings = ["HTML", "CSS", "JavaScript", "Python", "Ruby"]
# Add your code below!
symbols = []
strings.each do |s|
s = s.to_sym
symbols.push(s)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment