如下代码:
open "example.txt" for output as #1
print #1, "hello"
close #1
创建的文件是ANSI的文件,
如果想创建UTF8格式的文件应该怎么写?
谢谢!