unfrog (unfrog)

Race #2

View Pit Stop page for race #2 by unfrogGhost race

View profile for unfrog (unfrog)

Official speed 76.27 wpm (24.23 seconds elapsed during race)
Race Start November 21, 2017 11:29:27pm UTC
Race Finish November 21, 2017 11:29:51pm UTC
Outcome No win (3 of 3)
Accuracy 98.0%
Points 26.70
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")