Deserialize XML generated by the Google Blockly UI into data structures.
```rust extern crate blockly_parser;
use blocklyparser::{ Program, StatementBody, Block, FieldValue, programfrom_xml, };
fn main() {
let xml: &str = r#"
let program: Program = program_from_xml(xml);
let main_group: StatementBody = program.groups.get(0).unwrap();
let main_loop_block: Block = main_group.blocks.get(0).unwrap();
} ```
See the unit tests for more details.