Concept Flow - File.write for writing
Start
Call File.write with filename and content
Open file in write mode
Write content to file
Close file
Return number of bytes written
End
The program calls File.write with a filename and content, opens the file, writes the content, closes the file, and returns the number of bytes written.