Vlad Pop (sus_wus27)

Race #1

View Pit Stop page for race #1 by sus_wus27Ghost race

View profile for Vlad Pop (sus_wus27)

Official speed 31.22 wpm (59.19 seconds elapsed during race)
Race Start March 9, 2023 2:18:22pm UTC
Race Finish March 9, 2023 2:19:21pm UTC
Outcome No win (1 of 1)
Accuracy 82.0%
Points 10.93
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")