[Overview][Constants][Procedures and functions] | Reference for unit 'pwumain' (#powtils_main) |
Source position: pwumain.pas line 130
procedure Out( |
const s: String |
); |
Out() and similar functions handle all the low level details of CGI that one doesn't need to worry about. It performs tedious HTTP header initialization automatically (once, the very first time it is called). However one can still initialize more or override existing HTTP headers with SetHeader and such functions.
This function is the same as the old WebWrite, it is just renamed in later versions of Powtils. WebWrite is still available for backwards compatibility.
begin out('hi world'); end.What a poem!