Hello World

Hello World in the PSP way, saved as helloworld.psp and called as:

http://my_site.tld/path/to/helloworld.psp

<html><body>
<h2><%= 'Hello World' %></h2>
</html></body>

The <% and the %> delimiters are block delimiters for Python code. Everything inside it is a block of Python code or, if the left <% delimiter is immediately followed by an equal sign =, it is a Python expression. The above code used just a string returning expression.

A version using full Python code:

<%
import time
weekday = time.strftime('%A', time.localtime(time.time()))
message = 'Hello World! This is a wonderful %s.' % weekday
%>
<html><body>
<h2><%= message %></h2>
</html></body>