Class: HashDrills

Inherits:
Drills show all
Defined in:
lib/ruby_drills/hash/hash_drills.rb

Constant Summary

Constants included from Commands

Commands::GAMBLER

Instance Method Summary collapse

Methods inherited from Drills

#drills, #linked_drills, #ordered_drills, #start

Methods included from Commands

#back, #clear, #continue, #fail, #fold, #help, #hint, #quit, #review, #skip, #welcome, #win

Instance Method Details



3
4
5
6
7
8
9
10
11
12
13
# File 'lib/ruby_drills/hash/hash_drills.rb', line 3

def banner
  %{
Ruby Drills: Hash

A Hash is a dictionary-like collection of unique keys and their values.
Also called associative arrays, they are similar to Arrays, but where an
Array uses integers as its index, a Hash allows you to use any object type.

------------------------------------------------------------------
}
end