ko (nskostas)

Race #30

View Pit Stop page for race #30 by nskostasGhost race

View profile for ko (nskostas)

Official speed 51.02 wpm (36.22 seconds elapsed during race)
Race Start December 4, 2015 2:34:31pm UTC
Race Finish December 4, 2015 2:35:08pm UTC
Outcome No win (2 of 3)
Accuracy 99.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")