💉 (milan_)

Race #1

View Pit Stop page for race #1 by milan_Ghost race

View profile for 💉 (milan_)

Official speed 50.25 wpm (36.78 seconds elapsed during race)
Race Start May 25, 2018 2:02:48pm UTC
Race Finish May 25, 2018 2:03:25pm UTC
Outcome Win (1 of 3)
Accuracy 92.0%
Points 17.59
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")