Shinmera / random-state

A collection of portable random generators for Common Lisp
http://shinmera.github.io/random-state/
zlib License
27 stars 9 forks source link

mersenne: fix loop clause nonconformity #11

Closed Bike closed 2 years ago

Bike commented 2 years ago

LOOP's syntax is specified such that "variable" clauses like FOR must come before "main" clauses like termination tests. Pedantic LOOP implementations will warn or fail on nonconforming syntax.

Shinmera commented 2 years ago

Aha, I knew there had to be some of these lurking in my projects. Thanks!