goon

goon

https://git.tonybtw.com/goon.git git://git.tonybtw.com/goon.git
309 bytes raw
1
// Conditional expressions
2
3
let debug = true;
4
let theme = "dark";
5
6
{
7
    // If-then-else
8
    log_level = if debug then "verbose" else "error";
9
10
    // Ternary operator
11
    background = theme ? "#1a1a1a" : "#ffffff";
12
13
    // Nested conditional
14
    border_width = if debug then 4 else if theme then 2 else 1;
15
}