Skip to content

Instantly share code, notes, and snippets.

@kracekumar
Created November 13, 2016 06:47
Show Gist options
  • Save kracekumar/dd289aa669e434c302b4620f987eb99e to your computer and use it in GitHub Desktop.
Save kracekumar/dd289aa669e434c302b4620f987eb99e to your computer and use it in GitHub Desktop.
fn fn1(){
assert!(true, true);
}
fn fn2(){
panic!(true, false);
}
fn main(){
fn1();
fn2();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment