cmake-d/samples/FullSkeleton/programServer/ProgramServerMain.d
2007-08-29 11:24:39 +00:00

34 lines
803 B
D

/**
*
* ProgramServer -- A conditionally built server
*
* Authors: Tim Burrell
* Copyright: Copyright (c) 2007
* License: <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>
*
**/
////////////////////////////////////////////////////////////////////////////
// Module
///////////////////////////////////////
module programServer.ProgramServerMain;
////////////////////////////////////////////////////////////////////////////
// Imports
///////////////////////////////////////
import config;
import libraryA.io.Output;
////////////////////////////////////////////////////////////////////////////
// Main
///////////////////////////////////////
/**
* Main function
**/
void main(char [][] Args) {
Out("Conditionally Built Server says hello!");
}