potato (omgpotatoes)

Race #21

View Pit Stop page for race #21 by omgpotatoesGhost race

View profile for potato (omgpotatoes)

Official speed 82.57 wpm (22.38 seconds elapsed during race)
Race Start January 6, 2018 6:25:31am UTC
Race Finish January 6, 2018 6:25:54am UTC
Outcome Win (1 of 3)
Accuracy 98.0%
Points 28.90
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")