home *** CD-ROM | disk | FTP | other *** search
- --------------------------------------------------------------------------------
- --
- -- COPYRIGHT:
- -- IBM WorkFrame - Project Smarts
- -- (C) Copyright International Business Machines Corporation 1996
- -- Licensed Material - Program-Property of IBM - All Rights Reserved.
- -- US Government Users Restricted Rights - Use, duplication, or disclosure
- -- restricted by GSA ADP Schedule Contract with IBM Corp.
- --
- --------------------------------------------------------------------------------
-
- <if ($LANGUAGE$ == C++)>
-
- <include prologcp.tde>
-
- #include <iostream.h>
-
- int main(int argc, char **argv, char **envp)
- {
- cout << "Hello, world!" << endl;
- return 0;
- }
-
- <else>
- <if ($LANGUAGE$ == C)>
-
- <include prologc.tde>
-
- #include <stdio.h>
-
- int main(int argc, char **argv, char **envp)
- {
- printf( "Hello, world!\n");
- return 0;
- }
-
- </if>
- </if>
-
-