(cr0cka)

Race #6

View Pit Stop page for race #6 by cr0ckaGhost race

View profile for (cr0cka)

Official speed 76.31 wpm (24.22 seconds elapsed during race)
Race Start July 20, 2019 5:05:03pm UTC
Race Finish July 20, 2019 5:05:27pm UTC
Outcome No win (1 of 1)
Accuracy 96.0%
Points 26.71
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")