Skip to content

Instantly share code, notes, and snippets.

@creativ3lab
Created October 9, 2020 19:07
Show Gist options
  • Save creativ3lab/722a336e91022cf88faccedbc173bd74 to your computer and use it in GitHub Desktop.
Save creativ3lab/722a336e91022cf88faccedbc173bd74 to your computer and use it in GitHub Desktop.
Python
string str="global scope";
void main()
{
string str="main scope";
if (true){
string str="if scope";
cout << str << endl;
}
cout << str << endl;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment