[ruby/prism] Error for def ivar
[ruby.git] / doc / syntax.rdoc
blobcb427b6f0f03a25f3920e6c914245d1c9e365eaf
1 = Ruby Syntax
3 The Ruby syntax is large and is split up into the following sections:
5 Literals[rdoc-ref:syntax/literals.rdoc] ::
6   Numbers, Strings, Arrays, Hashes, etc.
8 Assignment[rdoc-ref:syntax/assignment.rdoc] ::
9   Assignment and variables
11 {Control Expressions}[rdoc-ref:syntax/control_expressions.rdoc] ::
12   +if+, +unless+, +while+, +until+, +for+, +break+, +next+, +redo+
14 {Pattern matching}[rdoc-ref:syntax/pattern_matching.rdoc] ::
15   Structural pattern matching and variable binding syntax
17 Methods[rdoc-ref:syntax/methods.rdoc] ::
18   Method and method argument syntax
20 {Calling Methods}[rdoc-ref:syntax/calling_methods.rdoc] ::
21   How to call a method (or send a message to a method)
23 {Modules and Classes}[rdoc-ref:syntax/modules_and_classes.rdoc] ::
24   Creating modules and classes including inheritance
26 Exceptions[rdoc-ref:syntax/exceptions.rdoc] ::
27   Exception handling syntax
29 Precedence[rdoc-ref:syntax/precedence.rdoc] ::
30   Precedence of ruby operators
32 Refinements[rdoc-ref:syntax/refinements.rdoc] ::
33   Use and behavior of the refinements feature
35 Miscellaneous[rdoc-ref:syntax/miscellaneous.rdoc] ::
36   +alias+, +undef+, +BEGIN+, +END+
38 Comments[rdoc-ref:syntax/comments.rdoc] ::
39   Line and block code comments
41 Operators[rdoc-ref:syntax/operators.rdoc] ::
42   Operator method behaviors