mirror of
https://github.com/clearlinux/dockerfiles.git
synced 2026-06-29 17:17:05 +00:00
9 lines
154 B
Ruby
9 lines
154 B
Ruby
strings = ["HTML", "CSS", "JavaScript", "Python", "Ruby"]
|
|
|
|
# Add your code below!
|
|
symbols = []
|
|
strings.each { |x| symbols.push(x.to_sym) }
|
|
|
|
puts symbols
|
|
|