# unreliable.pl - Simulate a program that sometimes just hangs if (rand(10) > 8){ sleep 1 while 1 > 0; } else{ print "--------------------------------\n", "It worked this time, no problems\n", "--------------------------------\n"; }