you can make a dba file this way:
this is how you make the file and prepare it to add the source code:
filename=test
if file exist(str$(filename).dba") then delete file "filename.dba"
open to write 1,"filename.dba"
then you can write your source code into this file using tis function:
function write(a$)
while a$<>""
write byte 1,asc(a$)
a$=right$(a$,len(a$)-1)
endwhile
endfunction
you write something like this:
write("text$="hello world" : print text$")
anyway, you can only include functions, but if you want you can put a whole game between function tags (but I think you can't use any other functions than)
[href]www.bernardfrancois.com[/href]