fork download
  1. BEGIN {
  2. a = 8;
  3. b = 8;
  4. if(a >= 8 && a == b && !b){
  5. print("正常処理");
  6. } else {
  7. print("異常処理");
  8. }
  9. }
  10.  
Success #stdin #stdout 0s 5556KB
stdin
Standard input is empty
stdout
異常処理