Home / Highlights / FAQ / Examples / Quick Start / Roadmap / Download / About Us
Built in types:
	u8 to u64
	s8 to s64
	f32, f64
	int (s64), uint (u64)
	void, bool, string
Operator precedence isn't the same as C, most notably bitwise operators are higher than multiply. "2 & 2 | 4" is 2 in bolin, 6 in C. The top is evaluate first.
operators:
	. [] () ++ --
	++ -- try - + ! ~
	<< >>
	|
	&
	^
	* / %
	+ -
	< > <= >=
	== !=
	&& || //Must use parenthesis to mix
	= := .= += -= *= /= %= >>= <<= ^= &= |=