fork download
  1. $integers = {1,2,3,4,5};
  2. for @integers -> $i {
  3. if $i > 3 {
  4. break;
  5. }
  6. say $i;
  7. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
===SORRY!===
Symbol '$integers' not predeclared in <anonymous> (prog.p6:1)
stdout
Standard output is empty