Gordon (gleung)

Race #1

View Pit Stop page for race #1 by gleungGhost race

View profile for Gordon (gleung)

Official speed 86.67 wpm (21.32 seconds elapsed during race)
Race Start September 30, 2021 2:13:28am UTC
Race Finish September 30, 2021 2:13:49am UTC
Outcome Win (1 of 3)
Accuracy 96.0%
Points 30.33
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")