@dudiellon (dudiellon)

Race #2017

View Pit Stop page for race #2017 by dudiellonGhost race

View profile for @dudiellon (dudiellon)

Official speed 80.05 wpm (23.09 seconds elapsed during race)
Race Start September 7, 2017 11:23:36pm UTC
Race Finish September 7, 2017 11:23:59pm UTC
Outcome Win (1 of 2)
Opponents 2. andreaak00 (67.97 wpm)
Accuracy 97.0%
Points 28.02
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")