IMNSHO a tool like this should be used for all code in the UKB. d
> -----Original Message----- > From: [email protected] > [mailto:[EMAIL PROTECTED] On Behalf Of Tomasz Janeczko > Sent: Thursday, October 04, 2007 7:07 PM > To: [email protected] > Subject: Re: [amibroker] Re: CODE beautification for AFL > > Hello, > > It is formatting the code so it looks nicely. > > For example converting from: > > function myfunc(x) { for(i=0;i<BarCount;i++) > {result[i]=2*x[i]};return result;} > > to: > > function myfunc( x ) > { > for( i = 0; i < BarCount; i++ ) > { > result[ i ] = 2 * x[ i ]; > } > > return result; > } > > Best regards, > Tomasz Janeczko > amibroker.com > ----- Original Message ----- > From: "Graham" <[EMAIL PROTECTED]> > To: <[email protected]> > Sent: Friday, October 05, 2007 1:01 AM > Subject: Re: [amibroker] Re: CODE beautification for AFL > > > > Can you explain what is meant by "code beautification" > > > > -- > > Cheers > > Graham Kav > > AFL Writing Service > > http://www.aflwriting.com > > > > > > On 05/10/2007, Tomasz Janeczko <[EMAIL PROTECTED]> wrote: > >> Thanks to the fact that AFL syntax is pretty similar to > C/C++ and Java > >> you can actually use any C/C++ tool for this job. > >> > >> Best regards, > >> Tomasz Janeczko > >> amibroker.com > >> ----- Original Message ----- > >> From: "murthysuresh" <[EMAIL PROTECTED]> > >> To: <[email protected]> > >> Sent: Friday, October 05, 2007 12:50 AM > >> Subject: [amibroker] Re: CODE beautification for AFL > >> > >> > >> > google pointed to http://www.sqcbw.com/source-code-beautifier- > >> > formatter-indenter-tool-utility-en/ > >> > > >> > i used renamed afl as a java file and bingo- it formatted it > >> > beautifully. let me try the 30 days and see how it works > >> > seede > >> > > >> > --- In [email protected], "dingo" <[EMAIL PROTECTED]> wrote: > >> >> > >> >> In this particular case YOU are the tool.. > >> >> > >> >> d > >> >> > >> >> > -----Original Message----- > >> >> > From: [email protected] > >> >> > [mailto:[EMAIL PROTECTED] On Behalf Of murthysuresh > >> >> > Sent: Thursday, October 04, 2007 5:52 PM > >> >> > To: [email protected] > >> >> > Subject: [amibroker] CODE beautification for AFL > >> >> > > >> >> > Are there any tools that would do code beautification for AFL? > >> >> > > >> >> > Seede > > > > > > Please note that this group is for discussion between users only. > > > > To get support from AmiBroker please send an e-mail directly to > > SUPPORT {at} amibroker.com > > > > For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG: > > http://www.amibroker.com/devlog/ > > > > For other support material please check also: > > http://www.amibroker.com/support.html > > > > Yahoo! Groups Links > > > > > > > > > > > > > Please note that this group is for discussion between users only. > > To get support from AmiBroker please send an e-mail directly to > SUPPORT {at} amibroker.com > > For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG: > http://www.amibroker.com/devlog/ > > For other support material please check also: > http://www.amibroker.com/support.html > > Yahoo! Groups Links > > > >
