ucg/examples/test_flags.ucg
Jeremy Wall 0766d8058f DEV: Stop using nested tuples in flag output.
Now that we have string manipulation facilities in the stdlib
that is a less useful and more confusing feature. This code removes
it.
2019-05-30 18:22:47 -05:00

13 lines
209 B
Plaintext

let args = {
port = 8080,
listen = "0.0.0.0",
verbose = NULL,
dir = [
"some/dir",
"some/other/dir",
],
"log.debug" = true,
"log.format" = "json",
};
out flags args;