Info logo
Encyclopedia

  

Ruby programming language

Home :: Up
Google
www.fastload.org

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 isn't 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


Take this note to be able to access this article instantly from any page

This article is licensed under the GNU Free Documentation License.
You may copy and modify it as long as the entire work (including additions) remains under this license.
To view or edit this article at Wikipedia, follow this link.