Serg (drgsus)

Race #95

View Pit Stop page for race #95 by drgsusGhost race

View profile for Serg (drgsus)

Official speed 57.41 wpm (32.19 seconds elapsed during race)
Race Start February 10, 2017 8:09:37pm UTC
Race Finish February 10, 2017 8:10:09pm UTC
Outcome No win (2 of 3)
Accuracy 91.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")