Skip to content

Latest commit

 

History

History
43 lines (32 loc) · 1.45 KB

ruby.md

File metadata and controls

43 lines (32 loc) · 1.45 KB

Ruby

A dynamic, general-purpose object-oriented programming language that combines syntax inspired by Perl with Smalltalk-like features. Powers the Ruby on Rails framework.

Beginning Ruby

You should be able to

  • Use irb to test your ideas.
  • Print values.
  • Run programs.
  • Avoid syntax errors.
  • Define a method.
  • Invoke a method.
  • Use common control flow structures.

Intermediate Ruby

You should be able to

  • Compare objects.
  • Define a class.
  • Instantiate an object.
  • Iterate over collections.

Ongoing Reference