The first and last statements make sense to me, but why is the second one
returning 5?
I find semantics like this troubling, and no documentation sheds light as
to what would cause this behavior.
I understand your concern. Let me try to clarify.
Expressions in Ruby can be like standalone statements. Statements are
terminated with an optional semicolon or with a newline. If a statement
is incomplete, it is understood to go on to the next line; if it is
complete, it is just as if terminated with a semicolon.
Therefore:
a = (4
+5)
is the same as
a = (4;
+5)
or even
a = (4; +5)
That is, it evaluates a "4" and then evaluates a "+5" (which then is the
resultant value, as it was the last evaluated).
But with
a = (4+
5)
the parser is able to see that the expression is not complete, and is
apparently continued on the next line.
I'm no expert, but I think it has to do with both first and third having the + operator on the first line and the second one having the + operator on the second line - note also that irb understands that the third case is a continuation of the previous line (*), but the second case is treated almost as 2 separate statements - no (*).
Thanks, the semantic is clearer now even though I think it is very
clumsy.
As an aside, it is interesting that Ruby allows for suites of
statements to be used in a grouping context (the parenthesis)--most
other languages that are whitespace sensitive don't allow this since it
gets confusing with expressions (as my example shows).
This behavior actually isn't well documented, since the semantic is
unclear in that documentation (or the Ruby Manual) what will happen in
the case that the grouping operator is used in this manner.
In a nutshell, newline delimits statements except when it doesn't
(trail with a binary operator for instance)... not a really good
semantic but I'll add that to the list of gotchas I need to deal with
in Ruby.
The 1.4 English Ruby Manual says:
Each expression are delimited by semicolons( or newlines.
The current Japanese Ruby Manual essentially says the same thing (my
Japanese isn't as sharp as it used to be):
式と式の間はセミコロン(;)または改行で区切ります
(shiki to shiki no aida wa semikoron( mata wa kaigyou de kugirimasu)
"Hal Fulton" <hal9000@hypermetrics.com> wrote in message
news:4402AFA0.5080703@hypermetrics.com...
Expressions in Ruby can be like standalone statements. Statements are
terminated with an optional semicolon or with a newline. If a statement
is incomplete, it is understood to go on to the next line; if it is
complete, it is just as if terminated with a semicolon.
It is generally good coding style in any programming language, when
continuing an expression across more than one line, to split the lines after
an operator or other punctuation symbol which indicates that the expression
is unfinished. I.e.
somefunction( ...very long argument list,
more arguments)
or
(4 +
5)
This gives the reader a visual hint that the expression is incomplete, and
continues onto the next line. Ruby just uses the same heuristic that a
human reader would use.
~Avdi
···
On 2/27/06, Almann Goo <almann.goo@gmail.com> wrote:
Thanks, the semantic is clearer now even though I think it is very
clumsy.
As an aside, it is interesting that Ruby allows for suites of
statements to be used in a grouping context (the parenthesis)--most
other languages that are whitespace sensitive don't allow this since it
gets confusing with expressions (as my example shows).
Actually, notice the semicolon. What Hal is demonstrating is that a
parenthetical group can contain multiple expressions. The newline
terminates the expression '4', which is a complete expression, while
the statement (which happens to include that expression) is continued
on the next line.
Jacob Fugal
···
On 2/27/06, Mark Wilden <mark@mwilden.com> wrote:
"Hal Fulton" <hal9000@hypermetrics.com> wrote:
> Expressions in Ruby can be like standalone statements. Statements are
> terminated with an optional semicolon or with a newline. If a statement
> is incomplete, it is understood to go on to the next line; if it is
> complete, it is just as if terminated with a semicolon.
>
> Therefore:
>
> a = (4
> +5)
>
> is the same as
>
> a = (4;
> +5)
This gives the reader a visual hint that the expression is incomplete,
and
continues onto the next line. Ruby just uses the same heuristic that
a human reader would use.
Well, when I work in languages other than Ruby (not in ruby, of course,
because its a syntax error), I've always found:
foo = a + b + c ...
+ z
more readable myself, but I'm probably just a weirdo.
You're not alone. I've adopted this practice in C programs ever since I
read about it in a book called _Human Factors and Typography for More
Readable Programs_, by Ronald M. Baeker and Aaron Markus, ACM Press,
1990. The authors recommend breaking long lines at operators "of
relatively low precedence" and placing the operator at the beginning of
the second line because "it emphasizes at the beginning of the
continuation that the second line is a continuation."
It does. 4 is a valid statement in Ruby. Ruby doesn't have the same
sharp division as many other languages. 4 is a statement, 4 + 5 is a
statement, and +5 is a statement. The return value of a series of
statements is the value of the final statement. As a result, the value
of '4; +5' is 5.
If this is M(atlab) then the three dots serve to signal
that the line is continued, i.e. serving the same purpose
as does \<nl> in ruby. I.e. you're explicitely stating already
that the expression continues on next line (just as you would
by adding a \<nl> or <operator><nl>).
-m
···
On Tue, Feb 28, 2006 at 04:21:02AM +0900, Anthony DeRobertis wrote:
(...)
Well, when I work in languages other than Ruby (not in ruby, of course,
because its a syntax error), I've always found: