Me (atmolandermimi)

Race #4

View Pit Stop page for race #4 by atmolandermimiGhost race

View profile for Me (atmolandermimi)

Official speed 40.17 wpm (46.00 seconds elapsed during race)
Race Start June 10, 2023 10:36:40pm UTC
Race Finish June 10, 2023 10:37:26pm UTC
Outcome Win (1 of 3)
Accuracy 98.0%
Points 14.06
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")