Rana (rana_1996)

Race #114

View Pit Stop page for race #114 by rana_1996Ghost race

View profile for Rana (rana_1996)

Official speed 25.79 wpm (71.66 seconds elapsed during race)
Race Start December 5, 2019 2:52:41pm UTC
Race Finish December 5, 2019 2:53:53pm UTC
Outcome No win (2 of 2)
Opponents 1. qwal (39.57 wpm)
Accuracy 94.0%
Points 9.03
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")