summaryrefslogtreecommitdiff
path: root/demo-printing.c
blob: 1399e588569d6643dfe4f932004284c827ca33ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include "libmalice.h"

int lmMain(void)
{
  lmPrintString("Goodbye cruel world, I had too much ");
  lmPrintInt32s(-559038737);
  lmPrintChar('.');
  lmPrintChar('\n');
  lmPrintString("Oh my, I'm still here... ok, I'll exit now.\n");

  return 42;
}