Skip to content

Instantly share code, notes, and snippets.

@Measter
Measter / main.rs
Last active October 25, 2017 23:25 — forked from steveklabnik/main.rs
The Results of the Expressive C++17 Coding Challenge in Rust
use std::env;
use std::io;
use std::io::{BufRead, BufReader, BufWriter, Write};
use std::fs::File;
#[derive(Debug)]
enum Error {
Io(io::Error),
Program(&'static str),
}