summaryrefslogtreecommitdiff
path: root/demo-printing.c
diff options
context:
space:
mode:
Diffstat (limited to 'demo-printing.c')
-rw-r--r--demo-printing.c13
1 files 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;
+}