kvn (humptyhump)

Race #1

View Pit Stop page for race #1 by humptyhumpGhost race

View profile for kvn (humptyhump)

Official speed 66.90 wpm (27.62 seconds elapsed during race)
Race Start February 11, 2021 8:11:16pm UTC
Race Finish February 11, 2021 8:11:43pm UTC
Outcome Win (1 of 3)
Accuracy 95.0%
Points 23.41
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")