Skip to Content
Ruby Pocket Reference
book

Ruby Pocket Reference

by Michael Fitzgerald
July 2007
Beginner to intermediate
176 pages
2h 30m
English
O'Reilly Media, Inc.
Content preview from Ruby Pocket Reference

Reserved Words

Table 1 lists Ruby’s reserved words or keywords.

Table 1. Ruby’s reserved words

Reserved word

Description

BEGIN

Code, enclosed in { }, to run before the program runs.

END

Code, enclosed in { }, to run when the program ends.

alias

Creates an alias for an existing method, operator, or global variable.

and

Logical operator; same as && except and has lower precedence.

begin

Begins a code block or group of statements; closes with end.

break

Terminates a while or until loop, or a method inside a block.

case

Compares an expression with a matching when clause; closes with end. See when.

class

Defines a class; closes with end.

def

Defines a method; closes with end.

defined?

A special operator that determines whether a variable, method, super method, or block exists.

do

Begins a block, and executes code in that block; closes with end.

else

Executes following code if previous conditional is not true, set with if, elsif, unless, or case. See if, elsif.

elsif

Executes following code if previous conditional is not true, set with if or elsif.

end

Ends a code block (group of statements) started with begin, class, def, do, if, etc.

ensure

Always executes at block termination; use after last rescue.

false

Logical or Boolean false; instance of FalseClass; a pseudovariable. See true.

for

Begins a for loop; used with in.

if

Executes code block if conditional statement is true. Closes with end. Compare unless, until.

in

Used with for loop. See for.

module

Defines a module; closes with end.

next

Jumps to the point immediately before ...

Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.

Read now

Unlock full access

More than 5,000 organizations count on O’Reilly

AirBnbBlueOriginElectronic ArtsHomeDepotNasdaqRakutenTata Consultancy Services

QuotationMarkO’Reilly covers everything we've got, with content to help us build a world-class technology community, upgrade the capabilities and competencies of our teams, and improve overall team performance as well as their engagement.
Julian F.
Head of Cybersecurity
QuotationMarkI wanted to learn C and C++, but it didn't click for me until I picked up an O'Reilly book. When I went on the O’Reilly platform, I was astonished to find all the books there, plus live events and sandboxes so you could play around with the technology.
Addison B.
Field Engineer
QuotationMarkI’ve been on the O’Reilly platform for more than eight years. I use a couple of learning platforms, but I'm on O'Reilly more than anybody else. When you're there, you start learning. I'm never disappointed.
Amir M.
Data Platform Tech Lead
QuotationMarkI'm always learning. So when I got on to O'Reilly, I was like a kid in a candy store. There are playlists. There are answers. There's on-demand training. It's worth its weight in gold, in terms of what it allows me to do.
Mark W.
Embedded Software Engineer

You might also like

Ruby Pocket Reference, 2nd Edition

Ruby Pocket Reference, 2nd Edition

Michael Fitzgerald
Ruby Phrasebook

Ruby Phrasebook

Jason Clinton
Ruby by Example

Ruby by Example

Kevin C. Baird

Publisher Resources

ISBN: 9780596514815Errata Page