X-Git-Url: https://git.enpas.org/?p=libmalice.git;a=blobdiff_plain;f=demo-printing.c;fp=demo-printing.c;h=e57f3d5f9ebd421a426bffa3bf8a5787e0fd77bc;hp=1399e588569d6643dfe4f932004284c827ca33ba;hb=a521b5a5eec1e79faa3545a2d9ec565d12ba0004;hpb=98e17528eb9be8e9ec1288c5ff6ba6550ddb4a67 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; +}