Volhosis (volhosis)

Race #7

View Pit Stop page for race #7 by volhosisGhost race

View profile for Volhosis (volhosis)

Official speed 72.09 wpm (25.63 seconds elapsed during race)
Race Start December 29, 2017 10:05:11pm UTC
Race Finish December 29, 2017 10:05:36pm UTC
Outcome Win (1 of 3)
Accuracy 98.0%
Points 25.23
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")