account deleted (concurrent)

Race #15

View Pit Stop page for race #15 by concurrentGhost race

View profile for account deleted (concurrent)

Official speed 44.97 wpm (41.09 seconds elapsed during race)
Race Start January 3, 2020 3:33:26pm UTC
Race Finish January 3, 2020 3:34:07pm UTC
Outcome No win (3 of 3)
Accuracy 95.0%
Points 15.74
Text #10002 (Length: 154 characters)

import os import sys def run(program, *args): pid = os.fork() if not pid: os.execvp(program, program + args) return os.wait()[0] run("python", "hello.py")