A safe but not complete implementation of the goto operator.
"GOTO point", allows you to return to this line later.
```rust
extern crate goto;
fn main() { let data = b"1234567890"; let mut iter = data.iter(); let mut a;
gpoint!['begin:
a = iter.next();
match a {
a @ Some(b'0') if a == Some(&b'9') => {
println!("#a 0!");
gpoint!['add:
];
},
Some(a) => {
println!("#a {}", unsafe { std::char::from_u32_unchecked(*a as u32) });
continue 'begin;
},
_ => break 'begin,
}
];
}
```
Copyright 2019 #UlinProject (Denis Kotlyarov) Денис Котляров
Licensed under the MIT License
Licensed under the Apache License, Version 2.0