Calico Boo
From IPRE Wiki
Calico (so far) uses the standard version of Boo, so any regular Boo program should work without issue.
Boo is not a language based on the Dynamic Language Runtime (DLR), so that there are not known means to call Python or Ruby programs from Boo. Also, the DLR environment is not currently available to Boo. We are currently looking into these limitations.
To use a Calico module, one needs to import it (which brings the module's items into the current namespace, unlike Python which keeps the names in the Myro module namespace). Also, one must provide all of the arguments for each parameter. For example:
boo---> import Myro
boo---> init("COM5", 38400)
