Alex (alexey0)

Race #74

View Pit Stop page for race #74 by alexey0Ghost race

View profile for Alex (alexey0)

Official speed 42.52 wpm (43.46 seconds elapsed during race)
Race Start January 27, 2018 11:36:35am UTC
Race Finish January 27, 2018 11:37:18am UTC
Outcome Win (1 of 3)
Accuracy 99.0%
Points 14.88
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")