Ruby
Rubyでソースコードにコメントを埋め込む
ソースコード中にコメントを埋め込みます。#は、#以降の文字列をコメントとして扱います。
#は、関数や変数への代入など、プログラム文の後ろに続けて書くことができます。
複数行コメントを書く場合は、=beginと=endで囲みます。
この時、=beginと=endはそれぞれ行頭に書く必要があります。
comment.rb
#!/usr/bin/ruby # one line comment puts "one line comment can be written after statement" # one line comment =begin This comment style can be written in multi lines like this line 1 line 2 !!! NOTE !!! "=begin" and "=end" must be written at beginning of line =end
実行結果
$ ruby comment.rb one line comment can be written after statement