Re: Error - cant get around! Expected ;
Posted by dscho on
URL: http://imagej.273.s1.nabble.com/Error-cant-get-around-Expected-tp3684050p3684057.html
Hi,
On Wed, 29 Jun 2011, Cseresnyes, Zoltan wrote:
> You can't break a line like this:
>
> if (prepost=="Other") {
> Dialog.create("Time");
>
> It should be in one line:
>
> if (prepost=="Other") {Dialog.create("Time");
You can break a line like this. Just try this little snippet:
if (1 == 1) {
write("Hi");
}
Ciao,
Johannes