summaryrefslogtreecommitdiffhomepage
path: root/Examples/ExampleCDialect.c
blob: c8c72d10043e12e917834f84d06c1a48a0318441 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
int main(int argc, char const *argv[])
{
    int* foo = 0x1000;

    if (foo == 57) {
        foo = 0x2000;
        *foo = 5;
        return foo;
    }

    return 57;
}