hello_world.c 147 B

12345678
  1. #include <stdio.h>
  2. #include "export.h"
  3. Int32 say_hello(Int32 n, Pointer name)
  4. {
  5. printf("Hello %s!\n", (unsigned char*) name);
  6. return n;
  7. }