int Foo(bool isBar) {
	if(isBar) {
		bar();
		return 1;
	} else {
		return 0;
	}
}
