ABCD (x007)

Race #367

View Pit Stop page for race #367 by x007Ghost race

View profile for ABCD (x007)

Official speed 53.27 wpm (34.69 seconds elapsed during race)
Race Start October 19, 2018 2:39:22pm UTC
Race Finish October 19, 2018 2:39:57pm UTC
Outcome Win (1 of 3)
Accuracy 99.0%
Points 18.64
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")