packages feed

funcons-simple-0.1.0.3: tests/Basic/Basic11.output

=== Program ===
function main() {
  var x,y;
  x = y = 2;
  print(++x);
  print(y);
}=== Output ===
Result:
null-value

Output Entity: standard-out
3,2