34 lines
803 B
D
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!");
|
|
}
|