Shanon (shadowyshadows)

Race #8

View Pit Stop page for race #8 by shadowyshadowsGhost race

View profile for Shanon (shadowyshadows)

Official speed 71.45 wpm (25.86 seconds elapsed during race)
Race Start June 18, 2020 7:43:36pm UTC
Race Finish June 18, 2020 7:44:02pm UTC
Outcome Win (1 of 3)
Accuracy 97.0%
Points 25.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")