Skip to content

Instantly share code, notes, and snippets.

@SiegeLord
Created May 22, 2014 16:06
Show Gist options
  • Save SiegeLord/a9149a22aed8c4417145 to your computer and use it in GitHub Desktop.
Save SiegeLord/a9149a22aed8c4417145 to your computer and use it in GitHub Desktop.
use std::io;
fn main()
{
match io::stdin().read_line().unwrap().as_slice().trim()
{
"abc" => println!("def"),
_ => ()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment