```rust extern crate ucl; use ucl::Parser;
let parser = Parser::new(); let result = parser.parse(r#"name = "mort"; section { nice = true; server = "http://localhost:6666"; chunk = 1Gb; }"#).unwrap();
println!("{}", result.fetchpath("section.nice").andthen(|v| v.as_bool())); ```
Check out LICENSE file.