Setvirtualresolution(640,480)
SetPrintSize(25)
ResetTimer()
//Create a test file
file$="agktest.txt"
OpenToWrite(1,file$)
WriteLine(1,"AGK rules!")
CloseFile(1)
//Create a zip file
CreateZip( 1,"agktest.zip")
CloseZip(1)
Repeat
Print ("Test and zip file created,")
Print ("The files will be deleted in 15 seconds")
Sync()
Until Timer()>15
//Delete the test files
DeleteFile(file$)
DeleteFile("agktest.zip")
End
Help make AGK better by submitting an example for this command! (All examples are subject to approval)