Voting

Category

real language

Bookmarking

Del.icio.us Digg Diigo DZone Earthlink Google Kick.ie
Windows Live LookLater Ma.gnolia Reddit Rojo StumbleUpon Technorati

Language Clarion

(Data Centric language)

Date:07/26/06
Author:Bruce Barrington?
URL:n/a
Comments:3
Info:http://www.softvelocity.com
Score: (2.60 in 5 votes)
RealBeer  Program

  Include('Equates')

  Map.  !Ask Clarion to include it's own functions.

BigStr cstring(8192)
part1 string(' bottles of beer on the wall, ')
part2 string(' bottles of beer, take one down and pass it around, ')
part3 string(' bottles of beer,')
i     byte
last1 string(' bottle of beer on the wall, ')
last2 string(' bottle of beer, take one down and pass it around, ')
last3 string(' No more bottles of beer.')
cf    equate('<13,10>')

!-----------------------------------------------------------------
!The code below will create a window for the text to be displayed.
!-----------------------------------------------------------------
Window WINDOW('Beer on the Wall.'),AT(,,246,164),GRAY,RESIZE,SYSTEM
      TEXT,AT(0,0),USE(BigStr),FULL,COLOR(COLOR:Blue)
     END

!---------------------
!Start of main section.
!---------------------
  CODE
  open(window)
  accept
   case event()
   of event:openwindow
     do loadbeer
   end
  end

!-------------------------------------------
! Populate the textbox for display
!-------------------------------------------
LoadBeer Routine
  loop i = 99 to 1 by -1
    if i = 1
      BigStr = BigStr & i & part1 & i & part2 & part3 
    else
      BigStr = BigStr & i & part1 & i & part2 & i-1 & part3 & cf
    .
  .

Download Source | Write Comment

Alternative Versions

VersionAuthorDateCommentsRate
1Ahmed07/01/064

Comments

>>  Geoff said on 01/24/08 00:03:43

Geoff I suspect the code should have

if i = 1
BigStr = BigStr & i & last1 & i & last2 & last3

ie. use the last vars not the part vars

>>  Wooten18Jamie said on 07/31/10 09:09:08

Wooten18Jamie If you want to buy real estate, you would have to get the <a href="http://bestfinance-blog.com">loan</a>. Moreover, my brother usually uses a collateral loan, which occurs to be really firm.

>>  Rugxulo said on 09/18/10 08:45:37

Rugxulo Spam alert.

Download Source | Write Comment

Add Comment

Please provide a value for the fields Name, Comment and Security Code.
This is a gravatar-friendly website.
E-mail addresses will never be shown.
Enter your e-mail address to use your gravatar.

Please don't post large portions of code here! Use the form to submit new examples or updates instead!

Name:

eMail:

URL:

Security Code:
  
Comment: