fork download
  1. bool foo(String s, bool b) {
  2. print(s);
  3. return b;
  4. }
  5.  
  6. void main() {
  7. foo('hello', true) || foo('world', true);
  8. }
  9.  
Success #stdin #stdout 1.05s 128460KB
stdin
Standard input is empty
stdout
hello