X-Git-Url: https://git.enpas.org/?p=libmalice.git;a=blobdiff_plain;f=demo-printing.c;h=e57f3d5f9ebd421a426bffa3bf8a5787e0fd77bc;hp=1399e588569d6643dfe4f932004284c827ca33ba;hb=HEAD;hpb=20ac18e7adb5f692ca888e13890c50c7e8e0e695 diff --git a/demo-printing.c b/demo-printing.c index 1399e58..e57f3d5 100644 --- a/demo-printing.c +++ b/demo-printing.c @@ -2,11 +2,16 @@ int lmMain(void) { - lmPrintString("Goodbye cruel world, I had too much "); + lmPrintString("This demo intersperses strings, integers and single characters:\n"); + + lmPrintString("The integer "); lmPrintInt32s(-559038737); + lmPrintString(" is negative"); lmPrintChar('.'); + lmPrintChar(' '); + lmPrintInt32s(3); + lmPrintString(" is positive."); lmPrintChar('\n'); - lmPrintString("Oh my, I'm still here... ok, I'll exit now.\n"); - return 42; -} \ No newline at end of file + return 0; +}