Wiki article about maxima's treatment of arrays and functions?
Subject: Wiki article about maxima's treatment of arrays and functions?
From: Albert Reiner
Date: 17 Jan 2007 18:10:17 +0100
[Michel Van den Bergh <michel.vandenbergh at uhasselt.be>, Mon, 15 Jan 2007 15:26:34 +0100]:
> I just noticed that
>
> do+1;
>
> in maxima toplevel puts maxima into an infinite loop!
As it should: After all, you ask it to re-evaluate +1 in an infinite
loop. `do <body>;' is the programming construct for an infinite loop
(that can be left by return() or throw()).
Albert.