Eetu (1emk)

Race #2

View Pit Stop page for race #2 by 1emkGhost race

View profile for Eetu (1emk)

Official speed 53.46 wpm (34.57 seconds elapsed during race)
Race Start June 23, 2023 11:28:09pm UTC
Race Finish June 23, 2023 11:28:44pm UTC
Outcome Win (1 of 3)
Accuracy 96.0%
Points 18.71
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")