Skip to content

Instantly share code, notes, and snippets.

@gskachkov
Created March 15, 2018 18:34
Show Gist options
  • Save gskachkov/98dc6c048a654bf692a8bea83de98686 to your computer and use it in GitHub Desktop.
Save gskachkov/98dc6c048a654bf692a8bea83de98686 to your computer and use it in GitHub Desktop.
int calc(int a, int b)
{
if (a > 10)
return a * 5;
return a * b;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment