From: "nobu (Nobuyoshi Nakada) via ruby-core" Date: 2023-05-24T14:19:37+00:00 Subject: [ruby-core:113629] [Ruby master Feature#19688] Add indentable block comment syntax Issue #19688 has been updated by nobu (Nobuyoshi Nakada). Description updated Status changed from Open to Feedback `#begin` has been parsed as a single line comment. Changing it can be incompatibility. Why not just indenting `=begin`? ---------------------------------------- Feature #19688: Add indentable block comment syntax https://bugs.ruby-lang.org/issues/19688#change-103270 * Author: ccmywish (Aoran Zeng) * Status: Feedback * 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 `<