S (4locofoco)

Race #4

View Pit Stop page for race #4 by 4locofocoGhost race

View profile for S (4locofoco)

Official speed 74.94 wpm (24.66 seconds elapsed during race)
Race Start July 31, 2019 10:30:38am UTC
Race Finish July 31, 2019 10:31:03am UTC
Outcome Win (1 of 2)
Accuracy 98.0%
Points 26.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")