rsfile 0.1.2

A Rust library to operate files or web pages easily and quickly
Documentation
1
2
3
4
5
6
7
8
9
10
use std::io::{Error, stdin};
mod rsio;
use rsio::*;

fn main(){
    println!("Hello, rsfile!");
    let args=std::env::args();
    println!("{:?}",args);

}