summaryrefslogtreecommitdiff
path: root/tnslc/tests/complex/if_else.tnsl
blob: d965e6b43bbd9e712bffc41023ad545d0f816672 (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/; main [int]
    /; if ()

    ;/

    /; if ()

    ;; else

    ;/

    /; if ()

    ;//; else

    ;/

    /; if ()

    ;; else if ()

    ;/

    /; if () []
    ;; else if () []
    ;; else []
    ;/

    /; if () []
    ;; if () []
    ;; else []
    ;/

    /; if () []
    ;; if () []
    ;; else if () []
    ;; else []
    ;/

    int i = 0

    # Short if syntax for variable declaration
    i = if (i < 1) [7] else [9]

    ;return 0
;/