RE: [U2] [UV] Typo leads to discovery of new feature

2004-10-13 Thread Donald Kibbey
Not to start anything here, but has anyone ever written up something along the lines of "lint" for Pick Basic? Don Kibbey Financial Systems Manager Finnegan, Henderson, Farabow, Garrett & Dunner LLP --- u2-users mailing list [EMAIL PROTECTED] To unsubscribe please visit http://listserver.u

RE: [U2] [UV] Typo leads to discovery of new feature

2004-10-13 Thread Rosenberg Ben
The general argument for rejecting a pattern of digits ending with a decimal point and not followed by any decimal places (e.g. "10.") is that such a pattern often indicates a typo. The argument for accepting such a pattern, representing an integer constant, is that we've always done it that way.

RE: [U2] [UV] Typo leads to discovery of new feature

2004-10-13 Thread Barry Brevik
>The 'xx' is masking. >>PRINT 10.'02' I use that all the time instead of FMT(), but what seems odd to me is the ".", unless UV accepts "10." to be the same as "10.0" or "10". Barry --- u2-users mailing list [EMAIL PROTECTED] To unsubscribe please visit http://listserver.u2ug.org/

Memo: Re: [U2] [UV] Typo leads to discovery of new feature

2004-10-13 Thread asvin . dattani
t: Re: [U2] [UV] Typo leads to discovery of new feature Except in one regard - we have seen a bug in 10.x that breaks this behaviour. It has affected two sites - one on Solaris and one on HPUX and has caused a lot of grief (one was a ban

Re: [U2] [UV] Typo leads to discovery of new feature

2004-10-13 Thread Brian Leach
actor of 2'. > >Originally from Pick, this shorthand is recognized in all flavours in BASIC. > >- Original Message ----- >From: Barry Brevik <[EMAIL PROTECTED]> >To: "U2-users (E-mail)" <[EMAIL PROTECTED]> >Subject: [U2] [UV] Typo leads to discov

Re: [U2] [UV] Typo leads to discovery of new feature

2004-10-12 Thread Ray Wurlod
f 2'. Originally from Pick, this shorthand is recognized in all flavours in BASIC. - Original Message - From: Barry Brevik <[EMAIL PROTECTED]> To: "U2-users (E-mail)" <[EMAIL PROTECTED]> Subject: [U2] [UV] Typo leads to discovery of new feature Date: Tue, 12 Oct 200

RE: [U2] [UV] Typo leads to discovery of new feature

2004-10-12 Thread Kevin King
o:[EMAIL PROTECTED] On Behalf Of Barry Brevik Sent: Tuesday, October 12, 2004 5:07 PM To: U2-users (E-mail) Subject: [U2] [UV] Typo leads to discovery of new feature I was writing some test code when a slip of the fingers resulted in some wierd syntax, which then proceded to compile, and produced some in

[U2] [UV] Typo leads to discovery of new feature

2004-10-12 Thread Barry Brevik
I was writing some test code when a slip of the fingers resulted in some wierd syntax, which then proceded to compile, and produced some interesting output. Anybody have any idea what this code thinks it is doing? PRINT 10.2 PRINT 10.'2' PRINT 10.'02' program output: 10.2 10.00 1000 --- u2-u