Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
activate the search engine, and keep the doxygen warnings under control
[simgrid.git] / doc / HelloWorld / HelloWorld.c
1 #include <stdio.h>
2 #include "xbt/log.h"
3 XBT_LOG_NEW_DEFAULT_CATEGORY(HelloWorld,
4                              "Messages specific for this Hello World example");
5 void main()
6 {
7   XBT_INFO("Hello World !!!");
8 }