Rust NYC!Follow us on Bluesky, 𝕏, and YouTube
Rust NYC is a part of the Rust East Coast group (organized on Discord) that shares resources with communities from other cities. Rust East Coast links
Download this file: big.txt
How does performance compare to this Python script version?
file_ = open("big.txt")
count = 0
for line in file_:
for char in line:
count += 1
print(count)