[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

Re: Indentation vs. "end"s

Kroeger, Simon (ext)

2/3/2006 10:34:00 AM


> if (cond) {meth this; func that} #(2)

how about:

(puts 'this'; puts 'that') if true

cheers

Simon


2 Answers

Mark Volkmann

2/3/2006 2:01:00 PM

0

On 2/3/06, Kroeger, Simon (ext) <simon.kroeger.ext@siemens.com> wrote:
>
> > if (cond) {meth this; func that} #(2)
>
> how about:
>
> (puts 'this'; puts 'that') if true

I'll chime in and say that I also don't like the ";;" idea.

I've always thought that parens could be used better, so I like
Simon's suggestion. In fact, if I were designing a language from
scratch, I'd use parens differently for method calls.

Instead of

calculate_average(19, sum(4, 7), 3)

I'd make it

calculate_average 19 (sum 4 7) 3

Parens would only be used to group method names with arguments when
there is more than one method call on the same line. Commas aren't
even necessary. Of course this is too drastic of a change to make to
Ruby at this point.

--
R. Mark Volkmann
Partner, Object Computing, Inc.


furufuru

2/3/2006 8:13:00 PM

0

> > if (cond) {meth this; func that} #(2)
>
> how about:
>
> (puts 'this'; puts 'that') if true

Thanks for the suggestion. That may be a good
solution for this particular case. But, how about

if condy then pet bush else bash him end #(3)

? Well, I think our main point is not how we can
come up with a nice looking construct for each case,
but what normal, regular constracts look like.

Regards,
Ryo