Ruby – Strings

  • Post author:
  • Post category:Ruby
  • Post comments:1 Comment

A String object in Ruby holds and manipulates an arbitrary sequence of one or more bytes, typically representing characters that represent human language. The simplest string literals are enclosed in…

Continue ReadingRuby – Strings

Ruby – Loops

  • Post author:
  • Post category:Ruby
  • Post comments:0 Comments

Loops in Ruby are used to execute the same block of code a specified number of times. This chapter details all the loop statements supported by Ruby. Ruby while Statement…

Continue ReadingRuby – Loops