On Fri, October 3, 2003 1at 1:51 am, nowhere girl sent the following
> i know some of you guys would get this ;)
> http://images.ucomics.com/comics/ft/2003/ft031003.gif

I would have written it like this, it's shorter:

#!/usr/bin/perl
for ($i = 0; $i < 500; $i++) {
  print "I will not throw paper airplanes in class.\n";
}

Or like this so it could run on almost any platform without recompiling:

public class Repeat {
 public static void main(String args[]) {
  for (int i = 0; i < 500 i++)
   System.out.println("I will not throw paper airplanes in class.");
 }
}

There a bunch more I could come up without too much trouble, but that's
because I am a geek.  ;-)

-Dave
___________________________________________________________________
The D mailing list                   http://www.djdenise.com/
Check out the new forum!             http://www.djdenise.com/forum/

Reply via email to