watch symphogear (ayasu)

Race #5

View Pit Stop page for race #5 by ayasuGhost race

View profile for watch symphogear (ayasu)

Official speed 84.47 wpm (21.88 seconds elapsed during race)
Race Start July 27, 2019 8:03:44pm UTC
Race Finish July 27, 2019 8:04:06pm UTC
Outcome Win (1 of 3)
Accuracy 99.0%
Points 29.57
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")