Skip to content

Instantly share code, notes, and snippets.

@jdumont0201
Last active May 5, 2018 08:09
Show Gist options
  • Save jdumont0201/3945ad1b2521203cc5310f865d4aa628 to your computer and use it in GitHub Desktop.
Save jdumont0201/3945ad1b2521203cc5310f865d4aa628 to your computer and use it in GitHub Desktop.
Avoid global scope variables
#include <iostream>
const int GLOBAL_VAR = 8;
int main(){
std::cout << GLOBAL_VAR << std::endl;
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment