#!/usr/bin/perl $count = .0; while ($count < .9) { $count = $count + .1; print ($count, "\n"); } print ("End!\n");