Alaska Young (soner)

Race #28

View Pit Stop page for race #28 by sonerGhost race

View profile for Alaska Young (soner)

Official speed 49.44 wpm (37.38 seconds elapsed during race)
Race Start May 14, 2013 2:13:58pm UTC
Race Finish May 14, 2013 2:14:35pm UTC
Outcome Win (1 of 3)
Accuracy 84.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")