(jasimk)

Race #4

View Pit Stop page for race #4 by jasimkGhost race

View profile for (jasimk)

Official speed 40.55 wpm (45.57 seconds elapsed during race)
Race Start December 23, 2021 11:22:22am UTC
Race Finish December 23, 2021 11:23:08am UTC
Outcome No win (3 of 3)
Opponents 1. dindondoe (77.01 wpm)
2. artemis_05 (44.04 wpm)
Accuracy 93.0%
Points 14.19
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")