HTTP/1.0 200 OK Content-Type: text/html
This is a test for the Kepler Syntax of Lua Pages, served by the CivetWeb web server.
While the native CivetWeb syntax for Lua pages is
<? script ?> and <?= expression ?>,
the "Kepler syntax" uses <?lua chunk ?>, <?lua= expression ?>, <% chunk %> and <%= expression %>.
<? greeting = 'CivetWeb' ?>
<strong><?= greeting %></strong>
<?lua greeting = 'Kepler' ?>
<strong><?lua= greeting ?></strong>
<% greeting = 'Kepler %' ?>
<strong><%= greeting %></strong>