Anup (humblehunter)

Race #9

View Pit Stop page for race #9 by humblehunterGhost race

View profile for Anup (humblehunter)

Official speed 32.00 wpm (57.75 seconds elapsed during race)
Race Start October 16, 2017 10:54:38am UTC
Race Finish October 16, 2017 10:55:35am UTC
Outcome No win (2 of 3)
Accuracy 94.0%
Points 11.20
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")