Encyclopedia > Ruby programming language

  Article Content

Ruby programming language

Ruby is an object-oriented interpreted programming language with clean syntax. It has its roots in Perl, Smalltalk, Python, Lisp and CLU, with Perl being the most important one.

Ruby language features:

Ruby is purely object-oriented: every bit of data is an object, even basic types. Every function is a method. This is similar to Smalltalk but unlike Java and Python. With a few exceptions, every name (variable) in a Ruby program holds a reference to an object, not the object itself.

The language was created by Yukihiro Matsumoto on February 24, 1993. The current stable version is 1.6.8. Note that the name is not an acronym--it is actually a pun on Perl. According to the author, he designed Ruby to follow the principle of least surprise (POLS), meaning that the language should be free from the traps and inconsistencies that plague other languages.

Here is a sample of Ruby code:

   # Execute the following block of code 10 times
   10.times {
      string1 = "Hello world".gsub(" ", ",") # Replace ' ' with ', ' and store in  string1
      string1 += "!"                         # append "!" to variable 'string1'
      puts string1                           # print variable 'string1', followed by a newline
   }

More Ruby code is available in form of sample algorithm implementations in the articles:

External links



All Wikipedia text is available under the terms of the GNU Free Documentation License

 
  Search Encyclopedia

Search over one million articles, find something about almost anything!
 
 
  
  Featured Article
Thomas a Kempis

... announced by K. Hirsche in 1874. The four books are not found in all the manuscripts, nor are they arranged invariably in the same order. The work is a manual ...

 
 
 
This page was created in 26.3 ms