Skip to content

Instantly share code, notes, and snippets.

@domiyanyue
Last active April 25, 2020 17:39
Show Gist options
  • Save domiyanyue/a4ef88306f837a823ed290fe3f86710d to your computer and use it in GitHub Desktop.
Save domiyanyue/a4ef88306f837a823ed290fe3f86710d to your computer and use it in GitHub Desktop.
declaration example
// example declaration
// declaration of a class
class MyClass;
// delaration of a function
int my_function (int arg);
// declaration of varibales, also contains definition
int my_var;
int my_var2 = 5;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment