From: "matz (Yukihiro Matsumoto) via ruby-core" Date: 2023-05-24T23:23:18+00:00 Subject: [ruby-core:113645] [Ruby master Feature#19688] Add indentable block comment syntax Issue #19688 has been updated by matz (Yukihiro Matsumoto). Status changed from Feedback to Closed I can understand the need for multi-line comment (although I mostly use Emacs or IDE to comment a region out). But proposed `#begin` and `#end` is not acceptable, due to the compatibility issue @nobu mentioned. Matz. ---------------------------------------- Feature #19688: Add indentable block comment syntax https://bugs.ruby-lang.org/issues/19688#change-103288 * Author: ccmywish (Aoran Zeng) * Status: Closed * Priority: Normal ---------------------------------------- Ruby's default block comment is using `=begin` and `=end` ```ruby =begin Some block comments =end ``` However, we must place them at the top of the line, thus we can't indent them, for example: ```ruby class A class B class C =begin The comment for this method =end def hello end end end end ``` This is something like the situation of `<