Ray (raysrlu)

Race #13

View Pit Stop page for race #13 by raysrluGhost race

View profile for Ray (raysrlu)

Official speed 42.18 wpm (43.81 seconds elapsed during race)
Race Start August 20, 2017 12:53:31pm UTC
Race Finish August 20, 2017 12:54:15pm UTC
Outcome Win (1 of 3)
Accuracy 98.0%
Points 14.76
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")