100 (soulitzer3)

Race #6

View Pit Stop page for race #6 by soulitzer3Ghost race

View profile for 100 (soulitzer3)

Official speed 74.04 wpm (24.96 seconds elapsed during race)
Race Start January 26, 2017 3:57:55am UTC
Race Finish January 26, 2017 3:58:20am UTC
Outcome Win (1 of 3)
Accuracy 97.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")