<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<HTML>
<HEAD>
<META NAME="Generator" CONTENT="Reality">
<TITLE>TRANSS</TITLE>
</HEAD>
<BODY>
<PRE>
SUBROUTINE HELLOWORLD
* Display the text 'Hello World'
* Include the RealWeb definitions
INCLUDE #RW.INCLUDE.DEFS FROM /SYSFILES/REALWEB,BP
* Start the HTML page.
* Display the text 'Hello World' in the browser's title bar.
CALL <code style="color: red">RW_START_HTML_PAGE</code>("Hello World", "", "", "", "")
* Insert a paragraph containing the required text.
CALL <code style="color: red">RW_START_PARA</code>("", "")
CALL <code style="color: red">RW_PUT</code>("Hello World")
CALL <code style="color: red">RW_END_PARA</code>
* Complete the page.
CALL <code style="color: red">RW_END_PAGE</code>
RETURN
</PRE>
</BODY>
</HTML>