(sidd_)

Race #31

View Pit Stop page for race #31 by sidd_Ghost race

View profile for (sidd_)

Official speed 109.89 wpm (16.82 seconds elapsed during race)
Race Start January 2, 2019 1:38:34am UTC
Race Finish January 2, 2019 1:38:51am UTC
Outcome Win (1 of 2)
Accuracy 98.0%
Points 38.46
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")