TGC Codebase Backup



Simple Screensaver by 5867Dude

27th Jun 2006 3:00
Summary

I have Created a Very Basic Screensaver in only 6 lines of Code (Does not include Rem Statments)



Description



Code
                                    ` This code was downloaded from The Game Creators
                                    ` It is reproduced here with full permission
                                    ` http://www.thegamecreators.com
                                    
                                    Rem Make Message
text$=Enter Your Message Here
Rem Start Loop
Do
Rem Print it randomly
Text=rnd640,rnd480,text$
Rem Wait for a time
Wait 100
Rem Clear the Screen
cls
Loop