Rana (rana_1996)

Race #152

View Pit Stop page for race #152 by rana_1996Ghost race

View profile for Rana (rana_1996)

Official speed 30.07 wpm (61.46 seconds elapsed during race)
Race Start January 2, 2020 2:34:02pm UTC
Race Finish January 2, 2020 2:35:03pm UTC
Outcome No win (2 of 3)
Accuracy 94.0%
Points 10.52
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")