tourist (touristhere)

Race #63

View Pit Stop page for race #63 by touristhereGhost race

View profile for tourist (touristhere)

Official speed 29.61 wpm (62.41 seconds elapsed during race)
Race Start April 9, 2024 11:26:09am UTC
Race Finish April 9, 2024 11:27:12am UTC
Outcome Win (1 of 3)
Accuracy 93.0%
Points 10.36
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")