tanon (tanon710s)

Race #90

View Pit Stop page for race #90 by tanon710sGhost race

View profile for tanon (tanon710s)

Official speed 74.10 wpm (24.94 seconds elapsed during race)
Race Start February 25, 2019 3:12:16pm UTC
Race Finish February 25, 2019 3:12:41pm UTC
Outcome No win (2 of 2)
Opponents 1. permil (101.09 wpm)
Accuracy 94.0%
Points 25.94
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")