]> AND Public Git Repository - simgrid.git/blob - doc/HelloWorld/HelloWorld.c
Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
kill synchronized dynars: we don't need them and they are a mess to keep (sorry,...
[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 }