Skip to content

Instantly share code, notes, and snippets.

@event15
Created March 22, 2017 17:54
Show Gist options
  • Save event15/0fee1ab4b9ba9d815b05423bdfc07d99 to your computer and use it in GitHub Desktop.
Save event15/0fee1ab4b9ba9d815b05423bdfc07d99 to your computer and use it in GitHub Desktop.
double divide(double dividend, double divisor)
in{
assert(divisor != 0);
}
out (result){
assert(result < 10);
}
body{
return dividend/divisor;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment