Marek (mawa)

Race #5

View Pit Stop page for race #5 by mawaGhost race

View profile for Marek (mawa)

Official speed 51.56 wpm (35.84 seconds elapsed during race)
Race Start March 30, 2017 11:04:59am UTC
Race Finish March 30, 2017 11:05:35am UTC
Outcome Win (1 of 2)
Opponents 2. kvbx (50.14 wpm)
Accuracy 90.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")