ifmycode

try to write good code.

Ruby入门

Ruby是日本程序员松本行弘开发的一个面向对象的脚本语言。

1
2
3
4
5
6
7
puts "hello world"
a = 0
if a < 10
puts "a is less than 10"
else
puts "a is not less than 10"
end