From e89efdd5d11a8571b4fc3d71c2ec9cd235e0bad5 Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Tue, 5 Feb 2008 19:11:04 +0100 Subject: doc: Document C/Java source highlighting. --- doc/user/src/prgm4.skb | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 doc/user/src/prgm4.skb (limited to 'doc/user/src') diff --git a/doc/user/src/prgm4.skb b/doc/user/src/prgm4.skb new file mode 100644 index 0000000..734de54 --- /dev/null +++ b/doc/user/src/prgm4.skb @@ -0,0 +1,28 @@ +(use-modules (skribilo source c)) + +(p [Here's how:]) + + (linebreak) + (prog + (source :language c +[#include + +static int foo = 10; +static float bar; + +/* This is the function responsible + for integer chbouibification. */ +float +chbouibify (int x) +{ + bar = foo + (float) x / random (); + foo = (float) x * random (); + + if (x > 2) + /* Great! */ + printf ("hello world!\n"); + else + printf ("lower than two\n"); + + return ((float) foo * bar); +}])) -- cgit v1.2.3