Ocean (oceanlim)

Race #10

View Pit Stop page for race #10 by oceanlimGhost race

View profile for Ocean (oceanlim)

Official speed 63.77 wpm (28.98 seconds elapsed during race)
Race Start October 12, 2021 5:56:36am UTC
Race Finish October 12, 2021 5:57:05am UTC
Outcome No win (2 of 3)
Accuracy 98.0%
Points 22.32
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")