Arbel (arbel03)

Race #1

View Pit Stop page for race #1 by arbel03Ghost race

View profile for Arbel (arbel03)

Official speed 48.48 wpm (38.12 seconds elapsed during race)
Race Start March 30, 2019 11:17:11am UTC
Race Finish March 30, 2019 11:17:49am UTC
Outcome No win (2 of 2)
Accuracy 93.0%
Points 16.97
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")