Skip to content

Instantly share code, notes, and snippets.

@aarohmankad
Created December 9, 2017 06:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aarohmankad/da9f7c8fc810556e9e792a1f987d4ae7 to your computer and use it in GitHub Desktop.
Save aarohmankad/da9f7c8fc810556e9e792a1f987d4ae7 to your computer and use it in GitHub Desktop.
double add(double a, double b) {
return a + b;
}
int main() {
assert(add(3, 4) == 7);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment