#!/bin/ch /* Copyright (c) 2001 by SoftIntegration, Inc. All Rights Reserved */ #include int main() { class CResponse Response; Response.begin(); Response.title("Test of Response.exit"); printf("

Test of Response.exit


\n"); //output before exit() printf("Output before exit()
\n"); Response.exit(); //output after exit() printf("Output after exit()
\n"); Response.end(); }