Ja (zentojamorn)

Race #30

View Pit Stop page for race #30 by zentojamornGhost race

View profile for Ja (zentojamorn)

Official speed 61.90 wpm (29.85 seconds elapsed during race)
Race Start October 14, 2021 10:15:54pm UTC
Race Finish October 14, 2021 10:16:24pm UTC
Outcome Win (1 of 3)
Accuracy 98.0%
Points 21.66
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")