Ruan (ruanp)

Race #7

View Pit Stop page for race #7 by ruanpGhost race

View profile for Ruan (ruanp)

Official speed 48.90 wpm (37.79 seconds elapsed during race)
Race Start May 25, 2022 10:39:49am UTC
Race Finish May 25, 2022 10:40:27am UTC
Outcome Win (1 of 3)
Accuracy 97.0%
Points 17.12
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")