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
47
48
= "compare_switch"
= "compare_switch.rs"
= "compare_switch.md"
= "rust"
[[]]
= "left" # - left hand input
= "number"
[[]]
= "right" # - right hand input
= "number"
[[]]
= "equal" # - outputs right hand value if the two values are equal
= "number"
[[]]
= "right-lt" # - outputs right hand value if the left hand value is less than the right hand value
= "number"
[[]]
= "right-lte" # - outputs right hand value if the left hand value is less than or equal to the right hand value
= "number"
[[]]
= "right-gt" # - outputs right hand value if the left hand value is greater than the right hand value
= "number"
[[]]
= "right-gte" # - outputs right hand value if the left hand value is greater than or equal to the right hand value
= "number"
[[]]
= "left-lt" # - outputs left hand value if the left hand value is less than the right hand value
= "number"
[[]]
= "left-lte" # - outputs left hand value if the left hand value is less than or equal to the right hand value
= "number"
[[]]
= "left-gt" # - outputs left hand value if the left hand value is greater than the right hand value
= "number"
[[]]
= "left-gte" # - outputs left hand value if the left hand value is greater than or equal to the right hand value
= "number"