Skip to content

Instantly share code, notes, and snippets.

@mmalone
Last active December 27, 2021 20:31
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mmalone/6ef9fabe1a7540ae89e8 to your computer and use it in GitHub Desktop.
Save mmalone/6ef9fabe1a7540ae89e8 to your computer and use it in GitHub Desktop.
var state = seed();
var lcg = function lcg() {
state = (5 * state + 3) % 16;
return state;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment