/yolo

A silly Python decorator to allow a function's output to be guessed by GPT

Primary LanguagePython

YOLO

Don't write code, just ask GPT what a function might return.

from yolo import yolo

@yolo
def get_nth_prime(n):
    ...


print(get_nth_prime(5000))
48611