Andrew (andrewrademacher)

Race #1

View Pit Stop page for race #1 by andrewrademacherGhost race

View profile for Andrew (andrewrademacher)

Official speed 62.06 wpm (29.78 seconds elapsed during race)
Race Start January 29, 2021 10:25:58pm UTC
Race Finish January 29, 2021 10:26:28pm UTC
Outcome Win (1 of 2)
Accuracy 96.0%
Points 21.72
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")