bool foo(String s, bool b) { print(s); return b; } void main() { foo('hello', true) || foo('world', true); }