#!/usr/bin/env ruby # -*- coding: utf-8 -*- puts"ロケット打ち上げ発射まで…" count = 1 while count > 0 puts count sleep(100) count -= 1 end puts"発射!!"