da (causenetsofv)

Race #29

View Pit Stop page for race #29 by causenetsofvGhost race

View profile for da (causenetsofv)

Official speed 77.96 wpm (23.70 seconds elapsed during race)
Race Start December 7, 2020 8:24:26pm UTC
Race Finish December 7, 2020 8:24:50pm UTC
Outcome Win (1 of 3)
Accuracy 100.0%
Points 27.29
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")