Daniel Brown wrote: > On Wed, Feb 27, 2008 at 3:46 PM, Matty Sarro <msarro@xxxxxxxxx> wrote: >> Completely off subject, but man I miss quickbasic... that was such a fun >> language to program in way back-in-the-day. So simple! > > Not to mention the ability to add (at the time) decent graphics to > an application as opposed to: > > 10 SCREEN 12 > 20 WINDOW (0,0) - (1000,750) > 30 FOR N=1 TO 50 > 40 LINE (N*20,0) - (0,750-N*15) > 50 NEXT N > .... > Maybe for you. For me, crap... 10 SCREEN 12 15 WINDOW (0,0) - (1000,750) 20 FOR N=1 TO 50 30 LINE (N*20,0) - (0,750-N*15) 40 NEXT N -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php