Searching for: Variable Declaration in Ruby
Local Variable Declaration
Language: Ruby

Used to declare a variable outside of a class.

Class and Instance Variables
Language: Ruby

Used declare variables within a class. There are two main types: class variables, which have the same value across all class instances (i.e. static variables), and instance variables, which have different values for each object instance.

Constants
Language: Ruby

Used to declare a variable whose value is not meant to be changed.

Arrays
Language: Ruby

An array is a variable that holds multiple values, indicated by an index. Ruby arrays can contain mixed types.


  Next Page >