(no title)
tordek | 14 years ago
DO30I=10,100
which was interpreted as DO 30 I = 10, 100
An amusing bug I saw in Expert C Programming mentioned how somebody once typed e dot instead of a comma, and DO 30 I = 10. 100
ended up interpreted as a simple real assignment: DO30I = 10.1
No comments yet.