Shivinder (shivindernarr)

Race #25

View Pit Stop page for race #25 by shivindernarrGhost race

View profile for Shivinder (shivindernarr)

Official speed 47.98 wpm (38.52 seconds elapsed during race)
Race Start December 28, 2014 1:07:52pm UTC
Race Finish December 28, 2014 1:08:30pm UTC
Outcome Win (1 of 3)
Accuracy 94.0%
Points 0.00
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")