Leslie (zhalie)

Race #7

View Pit Stop page for race #7 by zhalieGhost race

View profile for Leslie (zhalie)

Official speed 67.92 wpm (27.21 seconds elapsed during race)
Race Start December 8, 2017 11:32:15pm UTC
Race Finish December 8, 2017 11:32:42pm UTC
Outcome Win (1 of 2)
Accuracy 97.0%
Points 23.77
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")