Rust language [2] How write text file (UTF8)
Trivial task.
We write a text file.
Rust 1.55
A bit of documentation:
https://doc.rust-lang.org/std/fs/fn.write.html
https://doc.rust-lang.org/std/fs/index.html
use std::fs;
fn main() {
let content_hello = String::from("שָׁלוֹם ,Hello, Dobrý den, ﺎﻠﺳﻼﻣ ﻊﻠﻴﻜдравствуйте, नमस्ते, こんにちは)");
fs::write("./hello.txt", content_hello).expect("some problems with save data");
}
check:
file -i ./hello.txt
Some previous posts about the rust language:
https://steemit.com/programing/@grzesiekb/rust-language-1-how-read-text-file
Places where I also post information about Rust language challenges