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 VectorScript

Date:04/20/05
Author:Paul C. Zimmerman
URL:n/a
Comments:0
Info:n/a
Score: (2.27 in 15 votes)
{ 99 Bottles of Beer in VectorScript }
{ VectorScript is the scripting language of the VectorWorks CAD package }
{ Programming by Paul C. Zimmerman (paul at lugal dot com) }

PROCEDURE beer;
VAR
	i: INTEGER;
BEGIN
	FOR i:=99 DOWNTO 2 DO
	BEGIN
		Message(i,' bottles of beer on the wall...');
		Message(i,' bottles of beer!');
		Message('You take one down, pass it around...');
		IF (i>2) THEN Message(i-1,' bottles of beer on the wall.')
		ELSE Message('1 bottle of beer on the wall.')
	END;
	Message('1 bottle of beer on the wall...');
	Message('1 bottle of beer!');
	Message('You take one down, pass it around...');
	Message('No more bottles of beer on the wall.');
END;
RUN(beer);

Download Source | Write Comment

Alternative Versions

Comments

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: