SUBROUTINE FIXED
INCLUDE #RW.INCLUDE.DEFS FROM /SYSFILES/REALWEB,BP
EQU LF TO CHAR(10)
CALL RW_START_HTML_PAGE("Preformatted Example 1", "", "", "", "")
CALL RW_START_PARA("", "")
CALL RW_PUT("The following JavaScript function calculates the length of " :...
"the hypotenuse of a right-angled triangle:")
CALL RW_END_PARA
CALL RW_FIXED_ON
CALL RW_PUT("function hypotenuse(a, b) {" : LF : ...
" return Math.sqrt(a*a + b*b);" : LF : ...
"}")
CALL RW_FIXED_OFF
CALL RW_END_PAGE
RETURN
HTML
<!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>Preformatted Example 1</TITLE>
</HEAD>
<BODY>
<P>
The following JavaScript function calculates the length of the hypotenuse
of a right-angled triangle:
</P>
<PRE>function hypotenuse(a, b) {
return Math.sqrt(a*a + b*b);
}</PRE>
</BODY>
</HTML>
NEC welcomes your feedback on our documentation.
If you have any comments about the current Reality Help, or want something to be added in a future revision, please contact your NEC Helpdesk.
If your comment relates to this particular Help topic, remember to include the following information:
Product:
|
RealityVersion 15.5
|
Help revision:
|
Revision 0
|
Help topic:
|
Preformatted Example 1 (RealWeb)
|
File name:
|
FIXED.htm
|