* Makefile
- samples
+ contrib/examples
* contrib/Makefile
* contrib/examples/Makefile
* contrib/examples/guestbk/inifiles.prg
* contrib/examples/guestbk/testcgi.prg
* contrib/examples/guestbk/bld_b32.bat
* contrib/examples/guestbk/Makefile
* contrib/examples/pe/pe.prg
* contrib/examples/pe/Makefile
* contrib/examples/misc/Makefile
* contrib/examples/hscript/bld_b32.bat
* contrib/examples/hscript/Makefile
* contrib/examples/Makefile
* Moved /samples to /contrib/examples
17 lines
313 B
Haskell
17 lines
313 B
Haskell
<% FUNCTION Start()
|
|
|
|
/* Written by Felipe Coury <fcoury@flexsys-ci.com>
|
|
* www - http://www.harbour-project.org
|
|
*
|
|
*/
|
|
|
|
LOCAL a := "Hello Mom!" %><HTML><BODY><%
|
|
OutStd( a ) %><P>This is a <B>very ugly</B> script!!!<%
|
|
OutStd( "Line 2" )
|
|
%>
|
|
<P>
|
|
<%
|
|
OutStd( a, a, a )
|
|
%>
|
|
</HTML><%RETURN( NIL )%>
|