Language TINCL
| Date: | 04/20/05 |
| Author: | Anonymous |
| URL: | n/a |
| Comments: | 0 |
| Info: | n/a |
| Score: |
%: 99 Bottles of Beer in TINCL. '98 Ben Olmstead.
TINCL is meant for writing CGI programs, and, though it is possible
to write command-line utilities in TINCL, this version *is* meant to
be run on the web. You can check out a sample form at
<http://www.students.mines.edu/students/b/bolmstea/beer.html> :%
%.config.%
get-input, post-input
%{
#include <stdlib.h>
int beer;
}%
%.fragments.%
<p>
%#beer#% bottle%{ if ( beer != 1 ) { }%s%{ } }% of beer on the wall,<br>
%#beer#% bottle%{ if ( beer != 1 ) { }%s%{ } }% of beer,<br>
Take one down and pass it around,<br>
%{ if ( !--beer ) { }%No more%{ } else { }%%#beer#%%{ } }% bottle%{ if ( beer != 1 ) { }%s%{ } }% of
beer on the wall.
</p>
%.html.%
%{ set_var( &beer, 0, 1000, 99, get_value( "beer" ) ); }%
<html><head><title>%#beer#% Bottles of Beer on the Wall</title></head>
<body>
%{ while( beer > 0 ) { %(fragment)% } }%
</body></html>
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