Marwan (quarz)

Race #2

View Pit Stop page for race #2 by quarzGhost race

View profile for Marwan (quarz)

Official speed 55.15 wpm (33.51 seconds elapsed during race)
Race Start July 9, 2016 7:35:40pm UTC
Race Finish July 9, 2016 7:36:13pm UTC
Outcome Win (1 of 3)
Accuracy 98.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")