Viewing a single comment thread. View all comments

flabberghaster OP wrote

Reply to comment by twovests in 10,000,000 frog attack by flabberghaster

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