2008-06-28 19:46:55 -07:00
|
|
|
/*
|
2024-06-17 16:17:10 +02:00
|
|
|
* SPDX-License-Identifier: GPL-2.0-only
|
2008-06-28 19:46:55 -07:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "ns3/core-module.h"
|
|
|
|
|
|
|
|
|
|
using namespace ns3;
|
|
|
|
|
|
2022-10-07 20:08:35 +00:00
|
|
|
NS_LOG_COMPONENT_DEFINE("HelloSimulator");
|
2014-09-26 15:51:00 -07:00
|
|
|
|
2011-05-13 15:35:31 -04:00
|
|
|
int
|
2022-10-07 20:08:35 +00:00
|
|
|
main(int argc, char* argv[])
|
2008-06-28 19:46:55 -07:00
|
|
|
{
|
2022-10-07 20:08:35 +00:00
|
|
|
NS_LOG_UNCOND("Hello Simulator");
|
|
|
|
|
return 0;
|
2008-06-28 19:46:55 -07:00
|
|
|
}
|