Fahad/MCG-CS/Code/Factorial2.kcl
author Christian Urban <christian dot urban at kcl dot ac dot uk>
Sat, 19 Dec 2015 23:51:31 +0000
changeset 86 56dd3d1d479b
parent 45 7545b1bc1514
permissions -rw-r--r--
added a proof about Values and PMatch

var fact = 7;

fact = fact + 1;

var c = 0;
var result = 1;

for c = 1 to fact do
	result = result * c;
end;

print "The factorial is:";
print result;