Skip to content

Instantly share code, notes, and snippets.

@BSVino
Created October 16, 2016 02:14
Show Gist options
  • Save BSVino/06421c647d686830e5b4b2f8f217476b to your computer and use it in GitHub Desktop.
Save BSVino/06421c647d686830e5b4b2f8f217476b to your computer and use it in GitHub Desktop.
#include <cstdint>
uint64_t FinalSum(uint64_t a, uint64_t b, uint64_t c, uint64_t d) {
return a + b + c + d;
}
uint64_t Sum(uint64_t a, uint64_t b, uint64_t c, uint64_t d) {
return FinalSum(a, b, c, d);
}
int main(int argc, char** args) {
return (int)Sum(1, 2, 3, 4);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment