Skip to content

Instantly share code, notes, and snippets.

@steveobbayi
Last active March 31, 2016 16:34
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 steveobbayi/94071d2f05c8b130cd652f09ca23e493 to your computer and use it in GitHub Desktop.
Save steveobbayi/94071d2f05c8b130cd652f09ca23e493 to your computer and use it in GitHub Desktop.
#include <iostream>
using namespace std;
int squareThis(int x){
return x*x;
}
int main(){
cout << squareThis(2); // returns 4
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment