Created
March 20, 2023 14:41
-
-
Save rccc/df5475aa11a2e529d94525757bc45acb to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
fn main(){ | |
mut handler := os.open_append('test.txt') or { panic(err) } | |
handler.write_string('Hello World again!\r\n') or { panic(err) } | |
handler.close() | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment