account deleted (concurrent)

Race #17

View Pit Stop page for race #17 by concurrentGhost race

View profile for account deleted (concurrent)

Official speed 47.85 wpm (38.62 seconds elapsed during race)
Race Start January 3, 2020 3:35:18pm UTC
Race Finish January 3, 2020 3:35:57pm UTC
Outcome Win (1 of 3)
Accuracy 98.0%
Points 16.75
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")