silver (harmenszoon)

Race #6

View Pit Stop page for race #6 by harmenszoonGhost race

View profile for silver (harmenszoon)

Official speed 80.99 wpm (22.82 seconds elapsed during race)
Race Start June 8, 2023 2:54:40am UTC
Race Finish June 8, 2023 2:55:03am UTC
Outcome Win (1 of 2)
Accuracy 99.0%
Points 28.34
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")