ИГHAT (16ixremizov)

Race #8

View Pit Stop page for race #8 by 16ixremizovGhost race

View profile for ИГHAT (16ixremizov)

Official speed 31.50 wpm (58.67 seconds elapsed during race)
Race Start April 18, 2013 5:48:59pm UTC
Race Finish April 18, 2013 5:49:57pm UTC
Outcome Win (1 of 3)
Accuracy 99.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")