tear 0.5.1

Typed early returns and loop control + Syntax sugar for try!-like error handling
Documentation
1
2
3
4
5
6
7
8
use tear::twist;

fn bad_expression() {
	// It is a compiler message because we can't detect if the expression is incomplete
	twist! { -label 'a | 1 + }
}

fn main () {}