YashmaanJS (yashmaanjs)

Race #2

View Pit Stop page for race #2 by yashmaanjsGhost race

View profile for YashmaanJS (yashmaanjs)

Official speed 46.25 wpm (39.96 seconds elapsed during race)
Race Start June 26, 2023 10:33:05am UTC
Race Finish June 26, 2023 10:33:45am UTC
Outcome Win (1 of 3)
Accuracy 98.0%
Points 16.19
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")