!7 sclass Node { S text; new L children; toString { ret text; } } p-exp { S input = first(mL("Monolog examples")); new Node root; root.text = input; showFrame(jDynamicTree(root, func(Node n) -> L { n.children })); }