Matan (matansel)

Race #7

View Pit Stop page for race #7 by matanselGhost race

View profile for Matan (matansel)

Official speed 34.22 wpm (54.00 seconds elapsed during race)
Race Start December 14, 2017 6:21:59am UTC
Race Finish December 14, 2017 6:22:53am UTC
Outcome Win (1 of 3)
Accuracy 92.0%
Points 11.98
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")