unfrog (unfrog)

Race #1

View Pit Stop page for race #1 by unfrogGhost race

View profile for unfrog (unfrog)

Official speed 71.21 wpm (25.95 seconds elapsed during race)
Race Start November 21, 2017 11:28:35pm UTC
Race Finish November 21, 2017 11:29:01pm UTC
Outcome Win (1 of 3)
Accuracy 98.0%
Points 24.92
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")