7 lines
104 B
Text
7 lines
104 B
Text
|
|
# version 0.21.1
|
||
|
|
|
||
|
|
strings = ["asdf", "as⃝df̅"]
|
||
|
|
strings.each do |s|
|
||
|
|
puts "#{s} -> #{s.reverse}"
|
||
|
|
end
|