RfD Enhanced local variable syntax v4 long
  Home FAQ Contact Sign in
 
Advanced search
MATCHING GROUPS



more...
POPULAR GROUPS

more...

found 116 articles for 0.017 sec
Re: RfD - Enhanced local variable syntax, v4 (long)     

Group: comp.lang.forth · Group Profile · Search for RfD Enhanced local variable syntax v4 long in comp.lang.forth
Author: Albert van der Horst
Date: Sep 2, 2008 10:47

...>Doug Hoffman <dhoffman@talkamerica.net> writes Re: RfD - Enhanced local variable syntax, v4 (long) [..] "The most-accurate, least-expensive documentation is self-documenting code." : RECT { x1 ... " y2 . do-point2 ; Your point is probably that LOCALS| y2 x2 y1 x1 | is equivalent to LOCALS| y2 x2 | LOCALS| y1 x1 | and that { x1 y1 x2 y2 } is *not...
Show full article (0.90Kb) · Show article thread
Re: RfD - Enhanced local variable syntax, v4 (long)     

Group: comp.lang.forth · Group Profile · Search for RfD Enhanced local variable syntax v4 long in comp.lang.forth
Author: Marcel Hendrix
Date: Sep 1, 2008 11:44

Doug Hoffman <dhoffman@talkamerica.net> writes Re: RfD - Enhanced local variable syntax, v4 (long) [..] "The most-accurate, least-expensive documentation is self-documenting code." : RECT { x1 y1 x2 y2 -- } ... ; : RECT ( x1 y1 x2 y2 -- ) { x1 y1 } cr ." x1 = " x1 . ." y1 = " y1 . do-...
Show full article (0.41Kb) · Show article thread
Re: RfD - Enhanced local variable syntax, v4 (long)     

Group: comp.lang.forth · Group Profile · Search for RfD Enhanced local variable syntax v4 long in comp.lang.forth
Author: Marcel Hendrix
Date: Aug 29, 2008 11:14

...> writes Re: RfD - Enhanced local variable syntax, v4 (long) On Aug 28, 9:20 pm, m...@iae.nl...>> comments easily. And if the syntax replaces the now standard stack ... unambiguously. Mixing stack comment and locals make no sense to me. ... cells ] BUF2 } to declare 2 local buffers. What does this have ... ever mix stack comments and locals either. Your example : foo { | [ 1024 ...
Show full article (1.19Kb)
Re: RfD - Enhanced local variable syntax, v4 (long)     

Group: comp.lang.forth · Group Profile · Search for RfD Enhanced local variable syntax v4 long in comp.lang.forth
Author: Anton Ertl
Date: Aug 23, 2008 05:42

...> writes Re: RfD - Enhanced local variable syntax, v4 (long) [..] This will get...excluding the two files that define locals). Data, good! Some updated data from...Number of occurences of '{' as likely locals definition: grep '{ ' *.fs */*.fs |grep ... general, this brings back the LOCALS| nightmare. It only works with ... that implements double and FP locals the way that Bruce McFarling ...
Show full article (3.24Kb) · Show article thread
Re: RfD - Enhanced local variable syntax, v4 (long)     

Group: comp.lang.forth · Group Profile · Search for RfD Enhanced local variable syntax v4 long in comp.lang.forth
Author: Marcel Hendrix
Date: Aug 22, 2008 23:46

...writes Re: RfD - Enhanced local variable syntax, v4 (long) [..] This will...the two files that define locals). There seem to be no...details of the existing standard locals (1305 uses) are not that...no requests to implement the "{" syntax natively. In fact, I never...see any support questions wrt locals at all. Doubles are on...general, this brings back the LOCALS| nightmare. It only works with...
Show full article (2.63Kb) · Show article thread
Re: RfD - Enhanced local variable syntax, v4 (long)     

Group: comp.lang.forth · Group Profile · Search for RfD Enhanced local variable syntax v4 long in comp.lang.forth
Author: Anton Ertl
Date: Aug 22, 2008 11:22

....nl (Marcel Hendrix) writes: Bruce McFarling <agila61@netscape.net> writes Re: RfD - Enhanced local variable syntax, v4 (long) [..] This will get confusing if... } In general, this brings back the LOCALS| nightmare. It only works with separate FP locals definitions because they are on a separate stack (and it does not work for FP locals if they are on a shared stack)....
Show full article (1.22Kb) · Show article thread
Re: RfD - Enhanced local variable syntax, v4 (long)     

Group: comp.lang.forth · Group Profile · Search for RfD Enhanced local variable syntax v4 long in comp.lang.forth
Author: Marcel Hendrix
Date: Aug 22, 2008 10:18

Bruce McFarling <agila61@netscape.net> writes Re: RfD - Enhanced local variable syntax, v4 (long) [..] This will get confusing if used with arrays ... better to make it a specialization of the generic "d:", "f:"? ... { nb d: quack -- u } ( F: -- r ) 0e 0e 0e 0e {f: t0 t1 t2 t3 -- r } 0+1i 1+0i {f: z: a z: c } or, even simpler: ... { s: nb -- ...
Show full article (0.50Kb) · Show article thread
Re: RfD - Enhanced local variable syntax, v4 (long)     

Group: comp.lang.forth · Group Profile · Search for RfD Enhanced local variable syntax v4 long in comp.lang.forth
Author: Anton Ertl
Date: Aug 20, 2008 10:18

...: anton@mips.complang.tuwien.ac.at (Anton Ertl) writes Re: RfD - Enhanced local variable syntax, v4 (long) [..] I would write it like this: : maeno() { nb d: ud -- u r } ... ( I ...f: r } ) One can write it like this to keep consistency with the locals definition part, but I would probably leave the additional "f:" away, because the "...
Show full article (0.84Kb) · Show article thread
Re: RfD - Enhanced local variable syntax, v4 (long)     

Group: comp.lang.forth · Group Profile · Search for RfD Enhanced local variable syntax v4 long in comp.lang.forth
Author: Marcel Hendrix
Date: Aug 20, 2008 10:08

anton@mips.complang.tuwien.ac.at (Anton Ertl) writes Re: RfD - Enhanced local variable syntax, v4 (long) [..] I would write it like this: : maeno() { nb d: ud -- u r } 0e 0e 0e 0e 0e 0e 0e 0e { f: t3 f: t2 f: t1 f: t0 } 0+1i 1+0i { z: c z: a } [..] OK, not too bad. ( I guess you meant : maeno() { nb d: ud ...
Show full article (0.42Kb) · Show article thread
Re: RfD - Enhanced local variable syntax, v4 (long)     

Group: comp.lang.forth · Group Profile · Search for RfD Enhanced local variable syntax v4 long in comp.lang.forth
Author: Anton Ertl
Date: Aug 19, 2008 10:32

... writes Re: RfD - Enhanced local variable syntax, v4 (long) A question from this thread's start: [..] Local types and extensions -------------------------- Some current ... systems use indicators to define local values of sizes other than ... u ) ( F: -- r ) DLOCAL quack LOCAL nb 0e 0e 0e 0e ... and not QUACK. 3) The locals definitions of NB and UD...
Show full article (2.98Kb) · Show article thread
1 · 2 · 3 · 4 · 5 · 6 · 7 · 8 · 9 · next