Sourav (srax)

Race #13

View Pit Stop page for race #13 by sraxGhost race

View profile for Sourav (srax)

Official speed 74.58 wpm (24.78 seconds elapsed during race)
Race Start June 3, 2023 12:12:36pm UTC
Race Finish June 3, 2023 12:13:01pm UTC
Outcome Win (1 of 3)
Accuracy 97.0%
Points 26.10
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")