Comments

You must log in or register to comment.

twovests wrote

*hugs them all in rapid succession *

5

flabberghaster OP wrote

Please install python and then run this program:

#!/usr/bin/env python3

def main():
    for _ in range(10_000_000):
        print("🐸")

if __name__ == "__main__":
    main()
3