Does the first statement imply the second?
middlecase
Does the second statement imply the third?
@@ -12924,6 +12924,28 @@ along with MathBook XML. If not, seeThere is support for literate programming using the
For example here is the gcd algorithm in Python. Note that indentation is hard to get right at the moment.
+
+ def gcd(a, b):
+ while(b):
+
+ return a
+ The key part is the inner part of the loop
: +
+ a, b = b, a % b
+
+ This double assignment changes both a and b.
+- Now with one column, do things to the following. -
++ Now with one column, do things to the following. +
+