right -- my issue is that I wrote my big loop as a `for` loop (like `for word in word_list { do things }`). Can I just do
word_list.par_iter( |word|
do things
)
my code: https://github.com/sts10/half-entropy-word-checker/blob/master/src/main.rs#L46