1
2
3
4
5
6
7
|
# This script demonstrates a Wapp application that can display a copy
# of itself via the /self page. (See the wapp-page-self procedure for
# how that one page is generated.)
#
# This script also has a homepage and an /env page that show the wapp
# environment. The header and footer for each page is broken out into
# separate subroutines.
|
>
>
|
1
2
3
4
5
6
7
8
9
|
#!/usr/bin/wapptclsh
#
# This script demonstrates a Wapp application that can display a copy
# of itself via the /self page. (See the wapp-page-self procedure for
# how that one page is generated.)
#
# This script also has a homepage and an /env page that show the wapp
# environment. The header and footer for each page is broken out into
# separate subroutines.
|