75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
|
+ Wapptclsh is statically linked, so there is never a worry about
having the right shared libraries on hand. This is particularly
important if the application will ultimately be deployed into a
chroot jail.
+ Wapptclsh has SQLite built-in and SQLite turns out to be very
useful for the kinds of small application where Wapp excels.
+ Wapptclsh knows how to process "package require wapp". If you
run with ordinary tclsh, you might need to change the
"package require wapp" into "source wapp.tcl" and ship the separate
"wapp.tcl" script together with your application.
We prefer to use wapptclsh and wapptclsh is shown in all of the examples.
|
|
|
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
|
+ Wapptclsh is statically linked, so there is never a worry about
having the right shared libraries on hand. This is particularly
important if the application will ultimately be deployed into a
chroot jail.
+ Wapptclsh has SQLite built-in and SQLite turns out to be very
useful for the kinds of small applications where Wapp excels.
+ Wapptclsh knows how to process "package require wapp". If you
run with ordinary tclsh, you might need to change the
"package require wapp" into "source wapp.tcl" and ship the separate
"wapp.tcl" script together with your application.
We prefer to use wapptclsh and wapptclsh is shown in all of the examples.
|