// Note: quick hack to run tests.  Not a good coding practice!
extern void iterTest();
extern void boolTest();

int main() {
	boolTest();
	iterTest();
	
	return 0;
}
