fork download
  1. SIMULATE
  2. GENERATE 1 * Generate one entity at a time with no delay
  3. TRANSFER .5, SUCCEED, FAIL * 50% chance to succeed or fail
  4.  
  5. SUCCEED ADVANCE 1 * Success path
  6. TERMINATE 1
  7.  
  8. FAIL ADVANCE 1 * Failure path
  9. TERMINATE 1
  10.  
  11. START 10 * Start with 10 entities
  12. END
Success #stdin #stdout #stderr 0s 5284KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
Error: near line 1: near "SIMULATE": syntax error