BaniaTeAmo3 (camilin2002)

Race #19

View Pit Stop page for race #19 by camilin2002Ghost race

View profile for BaniaTeAmo3 (camilin2002)

Official speed 71.99 wpm (25.67 seconds elapsed during race)
Race Start June 19, 2023 4:13:33am UTC
Race Finish June 19, 2023 4:13:59am UTC
Outcome Win (1 of 3)
Accuracy 97.0%
Points 25.19
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")