Kinesis (kinesis_quake)

Race #112

View Pit Stop page for race #112 by kinesis_quakeGhost race

View profile for Kinesis (kinesis_quake)

Official speed 90.20 wpm (20.49 seconds elapsed during race)
Race Start January 23, 2024 6:02:46pm UTC
Race Finish January 23, 2024 6:03:07pm UTC
Outcome Win (1 of 3)
Accuracy 98.0%
Points 31.57
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")