Created
May 1, 2014 18:44
-
-
Save kyab/b36c6ec1fc96cf32ce2c to your computer and use it in GitHub Desktop.
mruby ignore after block comment
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [koji@macbookpro:~/work/mruby]$ cat block_comment.rb | |
| puts "hello" | |
| =begin | |
| here is a comment | |
| =end | |
| puts "bye" | |
| [koji@macbookpro:~/work/mruby]$ ruby block_comment.rb | |
| hello | |
| bye | |
| [koji@macbookpro:~/work/mruby]$ mruby/bin/mruby block_comment.rb | |
| hello | |
| [koji@macbookpro:~/work/mruby]$ mruby/bin/mruby block_comment.rb | |
| hello |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment