watch symphogear (ayasu)

Race #11

View Pit Stop page for race #11 by ayasuGhost race

View profile for watch symphogear (ayasu)

Official speed 87.07 wpm (21.22 seconds elapsed during race)
Race Start July 27, 2019 8:26:44pm UTC
Race Finish July 27, 2019 8:27:05pm UTC
Outcome Win (1 of 3)
Accuracy 96.0%
Points 30.47
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")