American Citizen on Mon, 30 Jun 2025 18:14:08 +0200
|
[Date Prev] [Date Next] [Thread Prev] [Thread Next] [Date Index] [Thread Index]
question on encapsulating format for a gp pari function
|
- To: pari-users <pari-users@pari.math.u-bordeaux.fr>
- Subject: question on encapsulating format for a gp pari function
- From: American Citizen <website.reader3@gmail.com>
- Date: Mon, 30 Jun 2025 09:14:03 -0700
- Delivery-date: Mon, 30 Jun 2025 18:14:08 +0200
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20230601; t=1751300045; x=1751904845; darn=pari.math.u-bordeaux.fr; h=content-transfer-encoding:subject:from:to:content-language :user-agent:mime-version:date:message-id:from:to:cc:subject:date :message-id:reply-to; bh=/KyKGiNMUPldGJGz8vbP6AnXPBOqT8uQMDoaKqbr/Q8=; b=WqpobwU1YExpjOfxMth/LB/kD3RZwfNloZfw649KVCT1U1zTIPDhRZMWGm5VFV4nhA pEV6GrdbrjoTVK3raahXlKA5PSAiP5CQUAMuPYDLNu2MDTo+lyEA8exH8wt87fgIJl3A 7TRSabN1uzQ9xemrOCYPC5rmI0U++SeZDnK+XTMBluGWHaRdHLzCB2XhDCqqNzcyC2zo M1RzyLWI455Ki2s8FKb2Vom6OCvSG8iVMXvRSG2vxnYMPvA7A/h8dK5MQ5HCYHTqwgOJ gsynhpK/7Bf2hoKhL66SJ/TwDpanh+JXWQXwVDmWHvCE2MsMVHLnmnL/56pvMbXnVM62 LNkQ==
- User-agent: Mozilla Thunderbird
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