Yami (yamileth)

Race #48

View Pit Stop page for race #48 by yamilethGhost race

View profile for Yami (yamileth)

Official speed 60.94 wpm (30.32 seconds elapsed during race)
Race Start September 22, 2015 10:19:46pm UTC
Race Finish September 22, 2015 10:20:17pm UTC
Outcome No win (2 of 2)
Opponents 1. dsat (61.44 wpm)
3. arturojreal (46.23 wpm)
4. iceryda4047 (42.19 wpm)
5. yarrpirate (39.17 wpm)
6. gersch (29.86 wpm)
7. sanzmaxxon (27.44 wpm)
Accuracy 96.0%
Points 0.00
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")