forked from Bloomstack/bbscript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.json
More file actions
39 lines (36 loc) · 1012 Bytes
/
test.json
File metadata and controls
39 lines (36 loc) · 1012 Bytes
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
[
["DBUG", 1, [
["IF", true,
[
["DBUG", "1.1.1", [ ["LOG", "BRANCH: true"] ]],
["DBUG", "1.1.2", [ ["SET", "branch", true] ]]
],
[
["DBUG", "1.2.1", [ ["LOG", "BRANCHL false"] ]],
["DBUG", "1.2.2", [ ["SET", "branch", false] ]]
]
]
]],
["DBUG", 2, [["LOG", "BRANCH TAKEN: ", ["VAR", "branch"]]]],
["DBUG", 3, [["input"]]],
["DBUG", 4, [["LOG", "Done", ["VAR", "user_input"]]]],
["DBUG", 5, [["LOG", "1+1", ["MATH", "+", 1, 1]]]],
["DBUG", 6, [["LOG", "true and false", ["COND", "AND", true, false]]]],
["LOG", "RESET---"],
["SET", "user_input", false],
["IF", true,
[
["LOG", "BRANCH: true"],
["SET", "branch", true]
],
[
["LOG", "BRANCHL false"],
["SET", "branch", false]
]
],
["LOG", "BRANCH TAKEN: ", ["VAR", "branch"]],
["input"],
["LOG", "Done", ["VAR", "user_input"]],
["LOG", "1 + 1", ["MATH", "+", 1, 1]],
["LOG", "true and false", ["COND", "AND", true, false]]
]