Each print statement will end with a new line.
VB Code:
  1. Open sFile For Output As iFileNum
  2.     Print #iFileNum, sText
  3.     Print #iFileNum, "More text on next line"
  4.     Print #iFileNum, "Etc."
  5. Close #iFileNum