1
0
mirror of https://github.com/jbranchaud/til synced 2026-01-04 23:58:01 +00:00

Add Block Comments as a ruby til.

This commit is contained in:
jbranchaud
2016-01-15 16:02:08 -06:00
parent 07e8abd4af
commit 992b6e8b3f
2 changed files with 17 additions and 0 deletions

16
ruby/block-comments.md Normal file
View File

@@ -0,0 +1,16 @@
# Block Comments
Ruby supports (ugly) block comments. They look like this:
```ruby
=begin
This is a block comment.
I can put whatever I want in here.
=end
def do_something
...
end
```
[source](http://stackoverflow.com/questions/536760/block-commenting-in-ruby)