Kinesis (kinesis_quake)

Race #4

View Pit Stop page for race #4 by kinesis_quakeGhost race

View profile for Kinesis (kinesis_quake)

Official speed 70.10 wpm (26.36 seconds elapsed during race)
Race Start October 13, 2021 1:45:12am UTC
Race Finish October 13, 2021 1:45:38am UTC
Outcome Win (1 of 3)
Accuracy 98.0%
Points 24.54
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")