Flatan (flatan)

Race #1

View Pit Stop page for race #1 by flatanGhost race

View profile for Flatan (flatan)

Official speed 38.98 wpm (47.41 seconds elapsed during race)
Race Start May 1, 2021 10:28:04pm UTC
Race Finish May 1, 2021 10:28:51pm UTC
Outcome Win (1 of 3)
Accuracy 94.0%
Points 13.64
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")