Ruby (programming language): Difference between revisions

From Citizendium
Jump to navigation Jump to search
imported>Pat Palmer
(temporarily removing History heading while revising intro)
imported>Pat Palmer
(reivison of first sentence (more to come))
Line 1: Line 1:
{{subpages9}}
{{subpages9}}
'''Ruby''' is a [[Reflection (computer science)|reflective]], [[Dynamic programming language|dynamic]], [[object-oriented]] [[computer]] [[programming language]]. It combines syntax inspired by [[Perl]] with [[Smalltalk programming language|Smalltalk]]-like object-oriented features, and also shares some features with [[Python programming language|Python]], [[Lisp programming language|Lisp]], [[Dylan programming language|Dylan]] and [[CLU programming language|CLU]]. Ruby is a single-pass, high-level [[interpreted language]]. It is focused on simplicity and productivity and has an easy to read and write [[syntax]]. Its main implementation is [[free software]].
'''Ruby''' is a [[computer]] [[programming language]] created beginning in 1993 by [[Yukihiro Matsumoto]], a Japanese computer professional working in an open-source software company. Ruby, named for the gemstone, was first released to the public in 1995, and over ten years, the language has been fostered and adopted by many in the open-source community, and its popularity increased even more since [[Rails]], an open-source [[web application framework]] based on Ruby, was released on 2004.


The language was created by [[Yukihiro Matsumoto]], who started working on Ruby on February 24th, 1993, and released it to the public in 1995.  The programming language was named after a colleague's [[birthstone]]. Its popularity has grown ever since the [[web application framework]] [[Ruby on Rails]] was released on 2004. As of March 2007, the latest stable version is 1.8.5. Ruby 1.9, which includes some major changes, is in development. Performance differences between the current Ruby implementation and other more entrenched programming languages has lead to the development of several virtual machines for Ruby. These include [[JRuby]], an attempt to port Ruby to the [[Java (programming language)|Java]] platform, and [[Rubinius]], an interpreter modeled after self-hosting [[Smalltalk]] virtual machines. The main developers have mainly focused on the virtual machine provided by the [[YARV]] project, which was merged into the Ruby source tree on December 31th, 2006, and will be released as a part of Ruby 2.0.
Ruby combines syntax inspired by [[Perl]] with [[Smalltalk programming language|Smalltalk]]-like object-oriented features, and also shares some features with [[Python programming language|Python]], [[Lisp programming language|Lisp]], [[Dylan programming language|Dylan]] and [[CLU programming language|CLU]]. Ruby is a single-pass, high-level [[interpreted language]]. It is focused on simplicity and productivity and has an easy to read and write [[syntax]]. Its main implementation is [[free software]].
 
As of March 2007, the latest stable version is 1.8.5. Ruby 1.9, which includes some major changes, is in development. Performance differences between the current Ruby implementation and other more entrenched programming languages has lead to the development of several virtual machines for Ruby. These include [[JRuby]], an attempt to port Ruby to the [[Java (programming language)|Java]] platform, and [[Rubinius]], an interpreter modeled after self-hosting [[Smalltalk]] virtual machines. The main developers have mainly focused on the virtual machine provided by the [[YARV]] project, which was merged into the Ruby source tree on December 31th, 2006, and will be released as a part of Ruby 2.0.


==Syntax==
==Syntax==

Revision as of 18:41, 10 October 2007

Main Article
Talk Template:Default button 3
 
Template:Cell style

Ruby is a computer programming language created beginning in 1993 by Yukihiro Matsumoto, a Japanese computer professional working in an open-source software company. Ruby, named for the gemstone, was first released to the public in 1995, and over ten years, the language has been fostered and adopted by many in the open-source community, and its popularity increased even more since Rails, an open-source web application framework based on Ruby, was released on 2004.

Ruby combines syntax inspired by Perl with Smalltalk-like object-oriented features, and also shares some features with Python, Lisp, Dylan and CLU. Ruby is a single-pass, high-level interpreted language. It is focused on simplicity and productivity and has an easy to read and write syntax. Its main implementation is free software.

As of March 2007, the latest stable version is 1.8.5. Ruby 1.9, which includes some major changes, is in development. Performance differences between the current Ruby implementation and other more entrenched programming languages has lead to the development of several virtual machines for Ruby. These include JRuby, an attempt to port Ruby to the Java platform, and Rubinius, an interpreter modeled after self-hosting Smalltalk virtual machines. The main developers have mainly focused on the virtual machine provided by the YARV project, which was merged into the Ruby source tree on December 31th, 2006, and will be released as a part of Ruby 2.0.

Syntax

Hello World

puts "Hello, world!"

or

puts 'Hello, world!'

Analysis of the example

Because Ruby is a high-level programming language, the Hello World program results in an extremely simple program, only having to include the puts expression followed by Hello, world! in quotation marks.

See also

External links