aymen (aymenalwh)

Race #7

View Pit Stop page for race #7 by aymenalwhGhost race

View profile for aymen (aymenalwh)

Official speed 46.57 wpm (39.68 seconds elapsed during race)
Race Start July 2, 2023 1:05:41pm UTC
Race Finish July 2, 2023 1:06:21pm UTC
Outcome Win (1 of 3)
Accuracy 98.0%
Points 16.30
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")