Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Iterate over characters of a string

  • each_char
text = "Crystal" # STring
text.each_char { |chr|
  puts chr      # Char
  puts chr.to_s # String
}