Anup (humblehunter)

Race #4

View Pit Stop page for race #4 by humblehunterGhost race

View profile for Anup (humblehunter)

Official speed 29.40 wpm (62.86 seconds elapsed during race)
Race Start October 16, 2017 10:44:14am UTC
Race Finish October 16, 2017 10:45:17am UTC
Outcome Win (1 of 3)
Accuracy 94.0%
Points 10.29
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")