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
let set = { a.b.c = 123; foo = { bar = 23; }; baz = 1; }; tes = "random value"; in [ (set ? a) (set ? a.b) (set ? a.b.c) (set ? foo) (set ? foo.bar) (set.foo ? bar) (set ? baz) (set ? x) (set ? x.y.z) (tes ? bar) (tes ? x.y.z) (null ? null) ]