Guest User

Untitled

a guest
Jul 18th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. case line
  2. when /^=begin(s|$)/
  3. in_multiline_comment = true
  4. @comment_lines += 1
  5. when /^=end(s|$)/
  6. @comment_lines += 1
  7. in_multiline_comment = false
  8. when /^s*#/
  9. @comment_lines += 1
  10. when /^s*$/
  11. # empty whitespace only line
Add Comment
Please, Sign In to add comment