Krishna (krrish94)

Race #8

View Pit Stop page for race #8 by krrish94Ghost race

View profile for Krishna (krrish94)

Official speed 51.74 wpm (35.72 seconds elapsed during race)
Race Start April 28, 2015 6:35:36pm UTC
Race Finish April 28, 2015 6:36:12pm UTC
Outcome No win (2 of 2)
Opponents 1. sidcode (56.02 wpm)
Accuracy 92.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")