open "c:\123.txt" for output as #file1
print #file1,"1" '1后会跟一个换行符
print #file1,"1"; 'f加分号 没有换行符
close #file1
原文链接:https://www.f2er.com/vb/259868.htmlopen "c:\123.txt" for output as #file1
print #file1,"1" '1后会跟一个换行符
print #file1,"1"; 'f加分号 没有换行符
close #file1
原文链接:https://www.f2er.com/vb/259868.html