Daniele (sorry_im_a_noob)

Race #2

View Pit Stop page for race #2 by sorry_im_a_noobGhost race

View profile for Daniele (sorry_im_a_noob)

Official speed 47.10 wpm (39.24 seconds elapsed during race)
Race Start August 15, 2023 1:31:20pm UTC
Race Finish August 15, 2023 1:31:59pm UTC
Outcome Win (1 of 3)
Accuracy 93.0%
Points 16.48
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")