Run ❯
Get your own website
❯Run Code Ctrl+Alt+R
Change Orientation Ctrl+Alt+O
Change Theme Ctrl+Alt+D
Go to Spaces Ctrl+Alt+P
#include
using namespace std; namespace MyNamespace { int x = 42; } using namespace MyNamespace; int main() { cout << x; // No need to write MyNamespace::x return 0; }
42