Wilda (wilprevil)

Race #13

View Pit Stop page for race #13 by wilprevilGhost race

View profile for Wilda (wilprevil)

Official speed 35.71 wpm (51.75 seconds elapsed during race)
Race Start May 18, 2017 11:56:28pm UTC
Race Finish May 18, 2017 11:57:20pm UTC
Outcome Win (1 of 4)
Accuracy 93.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")