Christoph Tapler wrote:
> I'm new to Ruby and I'm wondering that there is no possibility to write
> comments over more than one line. Just like in C for example with
> /* this is a
> multiline comment */
> 
> Is there any possibility to do this or is there a fundamental
> (architectural or whatever) problem?
> 
> Christoph
> 
> --
> Christoph Tapler
> christoph_tapler / gmx.net
> ( Please replace the underline with a dot. )

You can use =begin and =end.

class Foo
=begin
    This isn't a real class
    I just made it up for this post
=end
    def initialize
       puts "blah, blah"
    end
end

Regards,

Dan