Dinesh (dineshgaur18)

Race #2

View Pit Stop page for race #2 by dineshgaur18Ghost race

View profile for Dinesh (dineshgaur18)

Official speed 23.23 wpm (79.55 seconds elapsed during race)
Race Start October 25, 2017 10:00:52am UTC
Race Finish October 25, 2017 10:02:11am UTC
Outcome No win (3 of 3)
Accuracy 96.0%
Points 8.13
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")