C (chirashi)

Race #6

View Pit Stop page for race #6 by chirashiGhost race

View profile for C (chirashi)

Official speed 65.00 wpm (28.43 seconds elapsed during race)
Race Start May 19, 2017 2:13:10pm UTC
Race Finish May 19, 2017 2:13:38pm UTC
Outcome No win (2 of 3)
Opponents 1. hentaiclockwise (78.97 wpm)
Accuracy 95.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")