i_type_fast_with_good_posture (its_over_i_have_da_high_ground)

Race #1

View Pit Stop page for race #1 by its_over_i_have_da_high_groundGhost race

View profile for i_type_fast_with_good_posture (its_over_i_have_da_high_ground)

Official speed 42.28 wpm (43.71 seconds elapsed during race)
Race Start April 15, 2021 11:05:15pm UTC
Race Finish April 15, 2021 11:05:59pm UTC
Outcome Win (1 of 3)
Accuracy 97.0%
Points 14.80
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")