#!/usr/bin/ruby # encoding: utf-8 i = 5 while i < 10 do puts i i = i + 1 end