M (mostafam)

Race #119

View Pit Stop page for race #119 by mostafamGhost race

View profile for M (mostafam)

Official speed 51.92 wpm (35.59 seconds elapsed during race)
Race Start April 11, 2022 9:57:15pm UTC
Race Finish April 11, 2022 9:57:51pm UTC
Outcome Win (1 of 3)
Accuracy 98.0%
Points 18.17
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")