Sean (seanysean)

Race #1

View Pit Stop page for race #1 by seanyseanGhost race

View profile for Sean (seanysean)

Official speed 27.92 wpm (66.19 seconds elapsed during race)
Race Start November 1, 2017 4:48:36pm UTC
Race Finish November 1, 2017 4:49:42pm UTC
Outcome No win (3 of 3)
Accuracy 95.0%
Points 9.77
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")