summaryrefslogtreecommitdiff
path: root/tnslc/simple.tnsl
blob: ca116678e8670a42186a8d4c4ec0703c1e4e1479 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23

/; module mod
    uint a = 2, b = 4
    {}uint8 str = "Hello", c = "#"

    struct test {
        int i, j,
        bool k,
        uint8 m
    }
;/

mod.test tv = {
    1, 2, false, 0
}


/; main [int]
    ~int b = ~mod.a
    ~int c = b+8
    ~~int d = ~c
    return d``
;/