anshikavashistha

Results 100 comments of anshikavashistha
trafficstars

Yes I am @mattlord

Please assign it to me @mattlord

@hydai I am interested in this project.What are the prerequisites for this project?

@hydai @robrennie We might use conditional compilation to handle file reading differently on Windows and Unix-like systems:

```c use std::fs::File; use std::io::{self, Read}; #[cfg(target_os = "windows")] fn read_file(path: &str) -> io::Result { let mut file = File::open(path)?; let mut content = String::new(); file.read_to_string(&mut content)?; Ok(content) } #[cfg(not(target_os...

Alright @dannypsnl .Then what kind of approach should we consider?

@frouioui I want to work on this issue