#!/bin/ch
#include
void WriteHTML() {
class CResponse Response;
Response.setContentType("text/html");
Response.begin();
printf("\n");
printf("\n");
printf("\n");
printf("Web Plot\n");
printf("\n");
printf("\n");
printf("\n");
printf("\n");
printf("
\n");
printf("hello from plot_4.ch\n");
//plot2_4.ch
//system("plot2_4.ch");
system(stradd(getenv("CHHOME"), "lib-ch-example-sample-plot2_4.ch"));
printf("\n");
printf("\n");
printf("
\n");
printf("\n");
printf("\n");
Response.end();
}
int main() {
setvbuf(stdout, NULL, _IONBF, 0);
WriteHTML();
}