This crate provides a sound and safe way to jump from a goto forward in the control-flow to a label.
```rust use forwardgoto::rewriteforward_goto;
fn decodemsg(luck: impl Fn() -> bool, isalanturing: bool) { if isalanturing { forwardgoto!('turing_complete); }
println!("You'll need a lot of luck for this");
if luck() {
println!("Seems you were lucky");
forward_label!('turing_complete);
println!("Message decoded!");
} else {
println!("No luck today...");
}
} ```
Probably not!