@dudiellon (dudiellon)

Race #1953

View Pit Stop page for race #1953 by dudiellonGhost race

View profile for @dudiellon (dudiellon)

Official speed 62.21 wpm (29.71 seconds elapsed during race)
Race Start August 23, 2015 2:59:13pm UTC
Race Finish August 23, 2015 2:59:43pm UTC
Outcome No win (2 of 3)
Accuracy 87.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")