1use prtgn_encoding::write; 2 3fn main() { 4 5 let filename = "test.prtgn".to_string(); 6 let text = "Hello world! This is some example text.".to_string(); 7 8 write(filename, text).unwrap(); 9}