Tino (timbsk)

Race #2

View Pit Stop page for race #2 by timbskGhost race

View profile for Tino (timbsk)

Official speed 41.52 wpm (44.51 seconds elapsed during race)
Race Start February 13, 2022 12:40:39pm UTC
Race Finish February 13, 2022 12:41:23pm UTC
Outcome No win (2 of 2)
Accuracy 93.0%
Points 14.53
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")