string_manip_rust/
file_ops.rs

1pub fn read_file(path: &String) -> Result<String, String>{ todo!()}
2pub fn write_file(path: &String, content: &str) -> Result<(), String>{todo!()}
3pub fn word_count(path: &String) -> Result<i32, String> {todo!()}
4