Atte (gerppuli)

Race #4

View Pit Stop page for race #4 by gerppuliGhost race

View profile for Atte (gerppuli)

Official speed 37.07 wpm (49.85 seconds elapsed during race)
Race Start August 19, 2017 2:31:41pm UTC
Race Finish August 19, 2017 2:32:31pm UTC
Outcome No win (3 of 3)
Accuracy 92.0%
Points 12.97
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")