Mercurial > repos > tabletprog
view samples/logical.tp @ 219:b70be565d54c
Fix check of return value from env.find in symbol.quote so that falsey found values do not cause trouble.
author | Michael Pavone <pavone@retrodev.com> |
---|---|
date | Mon, 23 Dec 2013 14:22:20 -0800 |
parents | 59a94f3ad56f |
children |
line wrap: on
line source
#{ foo <- { print: "foo\n" true } bar <- { print: "bar\n" false } baz <- { print: "baz\n" true } qux <- { print: "shouldn't be printed\n" true } main <- { foo && bar || (baz || qux) } }