Amen [Dvorak-Trainee] (amun)

Race #272

View Pit Stop page for race #272 by amunGhost race

View profile for Amen [Dvorak-Trainee] (amun)

Official speed 98.19 wpm (18.82 seconds elapsed during race)
Race Start May 9, 2017 2:41:57am UTC
Race Finish May 9, 2017 2:42:16am UTC
Outcome Win (1 of 3)
Accuracy 99.0%
Points 0.00
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")