anshikavashistha
anshikavashistha
Yes I am @mattlord
PTAL @bddicken
Please assign it to me @mattlord
Alright @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?
@hydai @arujjval May I try this one ?
@frouioui I want to work on this issue