0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

文法コメント

Posted at

プログラムを作成している際に、ひとつの文をコメントにしたいケースがある。
テキストエディタの機能を使ってブロックコメント化することも考えられるが、プログラム言語の機能として文単位でコメントにする方法を考えたい。

if( a == 0 ){
  print('zero');
}

のようなif文があった場合に、

# if( a == 0 ){
  print('zero');
}

などと書くと、if文全体がコメント化されるような記法があると便利なのではないか。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?