welly-parser 0.1.1

An artisinal parser for the Welly programming language
Documentation
1
2
3
4
5
6
7
8
use std::{io};

fn main() -> std::io::Result<()> {
    println!("Welly!");
    welly_parser::echo(&mut io::stdin().lock(), &mut io::stdout())?;
    Ok(())
}