代码编辑器:
x
1
# !/usr/bin/ruby -w
2
# -*- encoding:utf-8 -*-
3
# filename: main.rb
4
# author: 简单教程(www.twle.cn)
5
# Copyright © 2015-2065 www.twle.cn. All rights reserved.
6
7
step = 6
8
9
until step > 10 do
10
puts( "step = #{step}" )
11
step += 1
12
end