#{ pair <- :a b { #{ first <- a second <- b + <- :other { pair: first + (other first) second + (other second) } } } main <- { foo <- pair: 5 7 bar <- pair: 9 23 baz <- foo + bar print: ((baz first) string) . "\n" print: ((baz second) string) . "\n" 0 } }