Jostein (frighyz)

Race #2

View Pit Stop page for race #2 by frighyzGhost race

View profile for Jostein (frighyz)

Official speed 41.95 wpm (44.05 seconds elapsed during race)
Race Start February 27, 2018 8:40:40pm UTC
Race Finish February 27, 2018 8:41:24pm UTC
Outcome No win (2 of 2)
Opponents 1. andyhk (58.97 wpm)
Accuracy 95.0%
Points 14.68
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")