marcid (daelithal)

Race #3

View Pit Stop page for race #3 by daelithalGhost race

View profile for marcid (daelithal)

Official speed 37.65 wpm (49.08 seconds elapsed during race)
Race Start August 9, 2023 5:17:54pm UTC
Race Finish August 9, 2023 5:18:43pm UTC
Outcome No win (2 of 2)
Opponents 1. yashkumar0 (48.36 wpm)
Accuracy 91.0%
Points 13.18
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")