qria (qria)

Race #38

View Pit Stop page for race #38 by qriaGhost race

View profile for qria (qria)

Official speed 77.83 wpm (23.74 seconds elapsed during race)
Race Start February 16, 2017 9:06:47am UTC
Race Finish February 16, 2017 9:07:11am 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")