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:
Search Encyclopedia
|
Featured Article
|