question on encapsulating format for a gp pari function

American Citizen <[email protected]>
Newsgroups gmane.comp.mathematics.pari.user
Message-ID <[email protected]>
Hello:

I write my gp pari functions as like this

{fun(a)=

my(b);

b=a;

return(b);

}

But recently I noticed that someone who I highly respect writes in this way.

fun(a)=

{

   my(b);

   b=a;

   return(b);

}

What is the preferred way of doing this? Is the second to allow the 
function signatures to be visible?

Randall
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.