What Is Ruby

Goals

  • Discuss what a programming language is
  • Discuss some of the characteristics of the Ruby language

Explanation

Every application on your computer was written by somebody. From the Operating System to your Web Browser. Every program was written in some kind of Programming Language.

Programming languages come in all shapes and sizes. Some are optimized for the speed at which the computer will execute them, and some are optimized for the speed at which a human can program in them.

Ruby was invented in the mid-1990s by a guy named Matz.

Ruby takes a lot of ideas from the language Perl and Smalltalk

Ruby is an interpreted language. Unlike compiled languages, where the computer has to read your entire code up front, in Ruby the computer reads your code line-by-line.

Ruby's popularity soared with the invention of the Ruby on Rails web framework, but Ruby is useful for many more things than just websites.

Next Step: