Files
unison/examples/tutorial/hello-simulator.cc

17 lines
234 B
C++
Raw Permalink Normal View History

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");
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
}