Taush (tsampley)

Race #3

View Pit Stop page for race #3 by tsampleyGhost race

View profile for Taush (tsampley)

Official speed 60.59 wpm (30.50 seconds elapsed during race)
Race Start June 21, 2021 3:15:11pm UTC
Race Finish June 21, 2021 3:15:41pm UTC
Outcome No win (3 of 3)
Accuracy 96.0%
Points 21.21
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")