Source Code - dpp/source/helloworld.dpp
Download link (right click, save as)
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
|
'HelloWorld.dpp - by Azure (www.pagemac.com)
'If you can't figure out what this does, well... ;)
'Note that you don't need to put this in a function, but
'I prefer to use them. The simplest form of this program
'would be just the screenput line.
function main()
{
title "Hello World";
screenput "Hello, World! Welcome to D++!";
}
|
This code is Copyright (C) 2000-2012 PageMac Programming. Reproduction of this code must adhere to the GNU General Public License.