icebox (flsf)

Race #13

View Pit Stop page for race #13 by flsfGhost race

View profile for icebox (flsf)

Official speed 66.34 wpm (27.86 seconds elapsed during race)
Race Start April 28, 2019 4:07:00pm UTC
Race Finish April 28, 2019 4:07:28pm UTC
Outcome No win (3 of 3)
Accuracy 97.0%
Points 23.22
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")