Talk:Python (programming language): Difference between revisions

Content deleted Content added
Line 162:
y = 100; /* Syntactically legal, but misleading indentation; y is assigned the value 100 regardless of the condition */
 
::;Example in C (good indendation, identical meaning as the
above):
if (x == 0)
x = 100;
Line 182 ⟶ 183:
 
- Just want to point out that this is a rather poor way to implement a factorial function. The number of recursions is very quickly exceded.
 
:That's not surprising. The point is not to implement an efficient factorial function, it's to show the operation of the language. -- [[User:Antaeus Feldspar|Antaeus Feldspar]] 02:54, 5 Nov 2004 (UTC)
 
== Adventurous editing ==