Ruby学习札记(2)-注释

Ruby学习札记(2)-注释

 

Ruby和其他语言一样,有行注释和块注释(多行注释)

 

1)行注释使用#,和C/C++//差不多

 

2)块注释使用=begin=end,将要注释的代码夹在中间,注意=end必须单独占一行,=begin则是可以独占一行或者在注释代码之前,用空格隔开就可以了。

=begin class Person Constant = 2; puts "The constant is " + Constant.to_s end puts Person::Constant =end class First INFO = "Raby"; INFO = "Ruby"; end puts First::INFO

你可能感兴趣的:(Class,Ruby,语言)