(sidd_)

Race #6

View Pit Stop page for race #6 by sidd_Ghost race

View profile for (sidd_)

Official speed 113.83 wpm (16.23 seconds elapsed during race)
Race Start October 3, 2018 5:03:24pm UTC
Race Finish October 3, 2018 5:03:41pm UTC
Outcome Win (1 of 2)
Accuracy 98.0%
Points 39.84
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")