× The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.


  • Subject: Re: CF-Spec - another call for opinions
  • From: "Rick Rauterkus" <ricker@xxxxxxxxxxxxx>
  • Date: Wed, 11 Aug 1999 16:01:40 -0500

> 2) Allow EVAL and CALLP to be omitted:

I'll cast a vote for option 2.


On a slightly different subject, your example reminds me of a wish list item
I have.  Many many moons ago when I was programming in Forth, we had a
Begin..While..Repeat loop.  This loop would solve the age old question of do
you use 2 Reads or an If inside the loop when looping thru a files records.
For example:

2 Reads method:

      CF read MasterFile
      CF dow Not %eof
      CF    (loop processing code)
      CF    read MasterFile
      CF enddo

If inside loop method

      CF dou %eof
      CF    read MasterFile
      CF    If  Not %eof
      CF        (loop processing code)
      CF    endif
      CF enddo
or
      CF dou %eof
      CF    read MasterFile
      CF    If  %eof
      CF        Leave
      CF    endif
      CF    (loop processing code)
      CF enddo

Begin..While..Repeat

      CF Begin
      CF    read MasterFile
      CF While Not %eof
      CF    (loop processing code)
      CF Repeat

The Repeat causes a jump back to the Begin.  If the While is false,
execution goes to after the Repeat.  Note that any code can go between the
Begin and While and it always executed at least once.  I really liked this
construct when I had it, don't know how receptive others would be to it.

Thanks for asking and listening!
Rick


+---
| This is the RPG/400 Mailing List!
| To submit a new message, send your mail to RPG400-L@midrange.com.
| To subscribe to this list send email to RPG400-L-SUB@midrange.com.
| To unsubscribe from this list send email to RPG400-L-UNSUB@midrange.com.
| Questions should be directed to the list owner/operator: david@midrange.com
+---END



As an Amazon Associate we earn from qualifying purchases.

This thread ...

Follow-Ups:
Replies:

Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].

Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.