Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
use OS threads and not simix ones to run the test in parallel
[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 }