Files
unison/examples/tutorial/hello-simulator.cc
2024-09-06 19:32:31 +00:00

17 lines
234 B
C++

/*
* SPDX-License-Identifier: GPL-2.0-only
*/
#include "ns3/core-module.h"
using namespace ns3;
NS_LOG_COMPONENT_DEFINE("HelloSimulator");
int
main(int argc, char* argv[])
{
NS_LOG_UNCOND("Hello Simulator");
return 0;
}