Rust NYC!Follow RustEastCoast's (virtual events) calendar on Luma
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)