Richard (richarddavies)

Race #2

View Pit Stop page for race #2 by richarddaviesGhost race

View profile for Richard (richarddavies)

Official speed 57.18 wpm (32.32 seconds elapsed during race)
Race Start February 6, 2021 11:43:22am UTC
Race Finish February 6, 2021 11:43:54am UTC
Outcome Win (1 of 3)
Accuracy 99.0%
Points 20.01
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")