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