(sidd_)

Race #26

View Pit Stop page for race #26 by sidd_Ghost race

View profile for (sidd_)

Official speed 115.58 wpm (15.99 seconds elapsed during race)
Race Start October 15, 2018 1:58:58am UTC
Race Finish October 15, 2018 1:59:14am UTC
Outcome Win (1 of 3)
Accuracy 99.0%
Points 40.45
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")