From a521b5a5eec1e79faa3545a2d9ec565d12ba0004 Mon Sep 17 00:00:00 2001 From: norly Date: Sun, 13 Jan 2013 18:33:38 +0000 Subject: [PATCH] Clearer printing example. --- demo-printing.c | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) 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; +} -- 2.30.2