04/21/2010 Control Structures
控制结构:
注:Ruby是使用end关键字表明程序体的结束的。
如果 if 或 while语句的程序体只是一个表达式, Ruby的语句修饰符可以只写出表达式,后面跟着 if 或 while 和条件。
Test Code:
number = 2
if number<5
puts "hello, world."
end
number = 2
puts "hello, world." if number <5
控制结构:
注:Ruby是使用end关键字表明程序体的结束的。
如果 if 或 while语句的程序体只是一个表达式, Ruby的语句修饰符可以只写出表达式,后面跟着 if 或 while 和条件。
Test Code:
number = 2
if number<5
puts "hello, world."
end
number = 2
puts "hello, world." if number <5