likh is library to read and write to text and CSV files.
Please review source code carefully before production usage.
```rust readfromfile("filename.txt");
```rust readfromfile("filename.txt","Hello!");
rust
read_from_csv("filename.csv");
The output will be in the form of a 2d Vec -
```rust vec![vec![1,2,3],vec![4,5,6]];
```rust let c = vec![vec![1,2,3],vec![4,5,6]];
writetocsv("filename.csv",c); ```