Language VectorScript
| Date: | 04/20/05 |
| Author: | Paul C. Zimmerman |
| URL: | n/a |
| Comments: | 0 |
| Info: | n/a |
| Score: |
{ 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
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!
Comments