RosettaCodeData/Task/Write-entire-file/Action-/write-entire-file.action
2023-07-01 13:44:08 -04:00

5 lines
83 B
Text

proc MAIN()
open (1,"D:FILE.TXT",8,0)
printde(1,"My string")
close(1)
return