iterate over string ruby

string = "Hello, World!"

string.each_char do |char|
  puts char
end