tstats[sglavacreeper] (sglavacreeper)

Race #2

View Pit Stop page for race #2 by sglavacreeperGhost race

View profile for tstats[sglavacreeper] (sglavacreeper)

Official speed 54.87 wpm (33.68 seconds elapsed during race)
Race Start April 17, 2018 10:52:38am UTC
Race Finish April 17, 2018 10:53:11am UTC
Outcome Win (1 of 3)
Accuracy 96.0%
Points 19.21
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")