Vielle (arc_sec)

Race #130

View Pit Stop page for race #130 by arc_secGhost race

View profile for Vielle (arc_sec)

Official speed 102.54 wpm (18.02 seconds elapsed during race)
Race Start November 27, 2019 9:14:02pm UTC
Race Finish November 27, 2019 9:14:20pm UTC
Outcome Win (1 of 3)
Opponents 2. lesirh (80.89 wpm)
3. henryv70 (49.23 wpm)
Accuracy 97.0%
Points 35.89
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")