Skip to content

Instantly share code, notes, and snippets.

@excid3
Created March 6, 2012 21:42
Show Gist options
  • Save excid3/1989114 to your computer and use it in GitHub Desktop.
Save excid3/1989114 to your computer and use it in GitHub Desktop.
if 0 <= i <= 15 then
f = (b & c) | ((!b) & d)
g = i
elsif if 16 <= i <= 31
f = (d & b) || ((!d) & c)
g = (5*i + 1) % 16
elsif 16 <= i <= 31
Should be
if 0 <= i <= 15
f = (b & c) | ((!b) & d)
g = i
elsif 16 <= i <= 31
f = (d & b) || ((!d) & c)
g = (5*i + 1) % 16
elsif 16 <= i <= 31
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment