summaryrefslogtreecommitdiff
path: root/Biz/Bild/Example.c
blob: 52ea9b9b991e94b23c8f5718667586cb68af707a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// : out examplesodium.exe
// : dep libsodium
// : arg -lsodium
#include <sodium.h>

int
main (void)
{
  if (sodium_init () < 0)
    {
      /* panic! the library couldn't be initialized; it is not safe to use */
    }
  printf ("Biz/Bild/Example.c: Hello world!\n");
  return 0;
}