icebox (flsf)

Race #8

View Pit Stop page for race #8 by flsfGhost race

View profile for icebox (flsf)

Official speed 76.65 wpm (24.11 seconds elapsed during race)
Race Start April 28, 2019 3:10:26am UTC
Race Finish April 28, 2019 3:10:51am UTC
Outcome Win (1 of 3)
Accuracy 98.0%
Points 26.83
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")