Can ruby comment out a block of code?

It sounds pretty stupid, but I could not find a way to do it in Ruby
yet.

Such in C/C++/Java:
/*
This is all comments.

This forum is connected to a mailing list that is read by thousands of
people. Before you post, please use the FAQ, the Ruby documentation and
Google to find an answer to your question. If you can't find an answer
there, make sure to include all relevant information that is necessary
to help you in your post.
*/

Am I missing something???

Help, please!

···

--
Posted via http://www.ruby-forum.com/.

Ruby's block comment looks like this:

=begin

We're in a comment here. Both the =begin and the =end must be the first elements on a line for this to work.

=end

James Edward Gray II

···

On Oct 14, 2006, at 12:47 PM, Roseanne Zhang wrote:

It sounds pretty stupid, but I could not find a way to do it in Ruby
yet.

Such in C/C++/Java:
/*
This is all comments.

This forum is connected to a mailing list that is read by thousands of
people. Before you post, please use the FAQ, the Ruby documentation and
Google to find an answer to your question. If you can't find an answer
there, make sure to include all relevant information that is necessary
to help you in your post.
*/

Roseanne Zhang wrote:

It sounds pretty stupid, but I could not find a way to do it in Ruby
yet.

Such in C/C++/Java:
/*
This is all comments.

This forum is connected to a mailing list that is read by thousands of
people. Before you post, please use the FAQ, the Ruby documentation and
Google to find an answer to your question. If you can't find an answer
there, make sure to include all relevant information that is necessary
to help you in your post.
*/

Am I missing something???

Help, please!

<do this>

$ acroread Programming\ Ruby.pdf

Search for =begin

Page 218:
</do this>

Looks like a line starting with "=begin" and a line starting with "=end"
will comment out a chunk of code.

HTH

James Gray wrote:

=begin

We're in a comment here. Both the =begin and the =end must be the
first elements on a line for this to work.

=end

James Edward Gray II

Huge Thanks!

I believe I saw it once somewhere, but remembered it wrong.
I wrote
==begin
==end

and it dit not work. :frowning:

Stupid me!!!!

···

On Oct 14, 2006, at 12:47 PM, Roseanne Zhang wrote:

--
Posted via http://www.ruby-forum.com/\.

James Edward Gray II wrote:

Ruby's block comment looks like this:

=begin

We're in a comment here. Both the =begin and the =end must be the first elements on a line for this to work.

=end

Are there any plans on introducing shorter form in ruby 2?

The form isn't that much of a problem, but the fact that something like that isn't possible

puts "hey" =begin
comment
=end

Esad

Esad Hajdarevic wrote:

Are there any plans on introducing shorter form in ruby 2?

Using all pound signs is more common - I only see the =begin / =end
style for file headers. Just Learn To Use Your IDE/Editor, and use
whicheverkeycombo it provides for line-commenting a paragraph, and
letting you span such a comment over multiple lines easily. I -think-
ruby-mode for Emacs supports auto-fill for that. Might be thinking of
another language though.

David Vallner