SalmanMKC (hellothen)

Race #65

View Pit Stop page for race #65 by hellothenGhost race

View profile for SalmanMKC (hellothen)

Official speed 63.38 wpm (29.16 seconds elapsed during race)
Race Start January 28, 2019 10:20:12am UTC
Race Finish January 28, 2019 10:20:41am UTC
Outcome No win (2 of 3)
Accuracy 95.0%
Points 22.18
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")