aboutsummaryrefslogtreecommitdiff
path: root/docs/notes/import_local.txt
blob: caffd2a9277a1318df4aaad6cee8c840f2188b2e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24

local imports
-------------


namespace stuff {
    int x;
    int y;
}


// import local into namespace
namespace a {
    import stuff;
    // perhaps "import local"
}

int func() {
    import stuff;
    
    x = y+1;
}