ghoudiy (ghoudiy)

Race #41

View Pit Stop page for race #41 by ghoudiyGhost race

View profile for ghoudiy (ghoudiy)

Official speed 79.90 wpm (23.13 seconds elapsed during race)
Race Start July 11, 2023 10:21:17am UTC
Race Finish July 11, 2023 10:21:40am UTC
Outcome Win (1 of 3)
Accuracy 99.0%
Points 27.96
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")