icebox (flsf)

Race #15

View Pit Stop page for race #15 by flsfGhost race

View profile for icebox (flsf)

Official speed 69.16 wpm (26.72 seconds elapsed during race)
Race Start April 28, 2019 4:09:12pm UTC
Race Finish April 28, 2019 4:09:39pm UTC
Outcome No win (2 of 3)
Accuracy 98.0%
Points 24.21
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")