Re: line breaking and indenting
Re: line breaking and indenting
- Subject: Re: line breaking and indenting
- From: "Arthur J Knapp" <email@hidden>
- Date: Tue, 30 Jan 2001 10:27:23 -0500
>
> From: Gakuji Ohtori <email@hidden>
>
> Date: Mon, 29 Jan 2001 01:39:53 +0900
>
> Subject: line breaking and indenting
>
> becomes
>
>
>
> set a to ,
>
> ,
>
> ,
>
> {a:1, b:2, c:3 ,
>
> } ,
>
> after a compilation. Are there any ways to avoid this? Probably not.
>
property RecordABC : run script ,
>
"{,
>
a:1,,
>
b:2,,
>
c:3,
>
}"
>
{a:(1) ,
>
, b:(2) ,
>
, c:(3) ,
>
}
There is another *visual clarity* technique that I negleted to
mention, record concatentation:
property MyRecord : =C2
{a:1} & =C2
{b:2} & =C2
{c:3}
I show this as a property because there is no runtime speed
penalty, the record concatentation occurs when you compile
the script, and not each time you run it.
--
{
Arthur J Knapp, of STELLARViSIONs ;
http://www.STELLARViSIONs.com ;
mailto:email@hidden ;
"... but I could be anyone"
"No you couldn't, sir ..."
}