fork download
  1. BEGIN {
  2.  
  3. }
  4.  
  5. {
  6. num = $1;
  7. if(num == 42)
  8. else
  9. printf("%d\n", num);
  10. }
  11.  
  12. END {
  13.  
  14. }
Success #stdin #stdout 0.01s 5312KB
stdin
4
5
4
12
43
stdout
4
5
4
12
43