[NTM] Vielle (arc_sec)

Race #114

View Pit Stop page for race #114 by arc_secGhost race

View profile for [NTM] Vielle (arc_sec)

Official speed 96.66 wpm (19.12 seconds elapsed during race)
Race Start August 28, 2019 11:43:31pm UTC
Race Finish August 28, 2019 11:43:50pm UTC
Outcome No win (2 of 3)
Opponents 1. spondulix (101.63 wpm)
Accuracy 96.0%
Points 33.83
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")