In qbasic I want to write a file like this:

OPEN "C:\Whatever.bas" for OUTPUT AS #1
PRINT #1, stuff
CLOSE #1


But I want to add stuff to the file as I go along. How do I do this?