📅  最后修改于: 2021-01-08 13:05:54             🧑  作者: Mango
Ruby注释是程序中的非可执行行。这些行被解释器忽略,因此它们在执行程序时不会执行。它们是由程序员编写的,用以解释其代码,以便其他查看该代码的人可以更好地理解它。
Ruby注释的类型:
Ruby单行注释一次只能注释一行。它们用#字符定义。
句法:
#This is single line comment.
例:
i = 10 #Here i is a variable.
puts i
输出:
Ruby多行注释用于一次注释多行。它们被定义与=开始于起始和结束=在该行的末尾。
句法:
=begin
This
is
multi line
comment
=end
例:
=begin
we are declaring
a variable i
in this program
=end
i = 10
puts i
输出: