Compiled Home Pages




Compiled Home Pages is a server side web programming language.
The main goal is to make a language that's as easy to use as PHP, but runs as fast as C++.
  1. Trying to have syntax similar to PHP.
  2. Trying to be as easy as PHP.
  3. Trying to be able to make web page changes and test them as fast as PHP.
  4. Trying to be as fast as C++.
Here's a simple example of a chp web page:
<html><head><title>Example</title></head>
<body>
5 + 3 = <?chp echo(5+3); ?><br />
8 + 4 = <?chp
int $a = 8;
int $b = 4;
echo($a + $b);
?></body></html>

The chp tags work similar to PHP.
Differences: