Skip to content

Instantly share code, notes, and snippets.

View EmingK's full-sized avatar
🐦
咕咕咕

Eming Kwok EmingK

🐦
咕咕咕
View GitHub Profile
@steveklabnik
steveklabnik / main.rs
Created October 25, 2017 16:06
The Results of the Expressive C++17 Coding Challenge in Rust
use std::env;
use std::io;
use std::io::prelude::*;
use std::fs::File;
#[derive(Debug)]
enum Error {
Io(io::Error),
Program(&'static str),
}