(sidd_)

Race #7

View Pit Stop page for race #7 by sidd_Ghost race

View profile for (sidd_)

Official speed 122.04 wpm (15.14 seconds elapsed during race)
Race Start October 3, 2018 5:03:51pm UTC
Race Finish October 3, 2018 5:04:06pm UTC
Outcome Win (1 of 2)
Accuracy 98.0%
Points 42.72
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")