Alex (alexey0)

Race #72

View Pit Stop page for race #72 by alexey0Ghost race

View profile for Alex (alexey0)

Official speed 42.93 wpm (43.05 seconds elapsed during race)
Race Start January 22, 2018 4:32:25pm UTC
Race Finish January 22, 2018 4:33:08pm UTC
Outcome Win (1 of 3)
Accuracy 99.0%
Points 15.03
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")