mechanical (mechanical650)

Race #4

View Pit Stop page for race #4 by mechanical650Ghost race

View profile for mechanical (mechanical650)

Official speed 61.61 wpm (30.00 seconds elapsed during race)
Race Start March 9, 2018 12:48:08am UTC
Race Finish March 9, 2018 12:48:38am UTC
Outcome Win (1 of 2)
Opponents 2. jwilander (42.64 wpm)
Accuracy 95.0%
Points 21.57
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")