Skip to content

Latest commit

 

History

History
16 lines (12 loc) · 267 Bytes

block-comments.md

File metadata and controls

16 lines (12 loc) · 267 Bytes

Block Comments

Ruby supports (ugly) block comments. They look like this:

=begin
This is a block comment.

I can put whatever I want in here.
=end
def do_something
  ...
end

source