#!/usr/bin/perl -w use strict; $count = .0; until ($count == .9) { $count = $count + .1; print ($count, "\n"); } print ("End!\n");