Rodrigo (alang217)

Race #1

View Pit Stop page for race #1 by alang217Ghost race

View profile for Rodrigo (alang217)

Official speed 40.02 wpm (46.18 seconds elapsed during race)
Race Start December 24, 2017 9:01:50am UTC
Race Finish December 24, 2017 9:02:36am UTC
Outcome Win (1 of 2)
Accuracy 95.0%
Points 14.01
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")