Sat, 26 Jan 2019 19:38:36 +0400

Signed-off-by: Valentin Popov <info@valentineus.link>
This commit is contained in:
Valentin Popov 2019-01-26 19:38:36 +04:00
parent ecbb303ce0
commit bc7ca7dcc1
Signed by: Valentin Popov
GPG Key ID: 269A00ACA90A8EA3

View File

@ -6,6 +6,6 @@ use parser::*;
fn main() {
let file: File = File::open("events.xml").unwrap();
let data: ParserResult = qwerty(BufReader::new(file));
let data: ParserResult = parse(BufReader::new(file));
dbg!(data.meeting_name);
}