Skip to content

Instantly share code, notes, and snippets.

@pr4v33n
Created March 4, 2011 19:53
Show Gist options
  • Save pr4v33n/855595 to your computer and use it in GitHub Desktop.
Save pr4v33n/855595 to your computer and use it in GitHub Desktop.
jbk1
a,b,c,d := c,d,a-c*q,b-d*q
declare 4 temporary variables ta, tb, tc, td
then do
ta = a;
tb = b;
tc = c;
td = d;
then do
a = tc;
b = td;
c = ta - tc*q;
d = tb - td*q;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment