diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -6,7 +6,14 @@
 Building
 --------
 
-To build the library, just use `cabal install` as usual. To build the proof of concept example, do the following
+To build the library, just use `cabal install` as usual from the source code directory or by installing from Hackage.
+
+You may like to have a look at a [minimal example](blob/master/tests/objc/minimal/Main.hs) of its use, which you can build as follows:
+
+* Execute `cd tests/objc/minimal; make`.
+* Now run the demo executable with `./Minimal`.
+
+To build the proof of concept example, do the following:
 
 * Execute `cd tests/objc/concept; make`.
 * Now run the demo executable with `./InlineObjC`.
diff --git a/language-c-inline.cabal b/language-c-inline.cabal
--- a/language-c-inline.cabal
+++ b/language-c-inline.cabal
@@ -1,5 +1,5 @@
 Name:                   language-c-inline
-Version:                0.3.0.0
+Version:                0.3.0.1
 Cabal-version:          >= 1.9.2
 Tested-with:            GHC == 7.6.3
 Build-type:             Simple
@@ -9,8 +9,8 @@
                         quasi-quotation. In particular, it enables the use of foreign libraries
                         without a dedicated bridge or binding. Here is a tiny example:
                         .
-                        > log :: String -> IO ()
-                        > log msg = $(objc 'msg [cexp| NSLog (@"Here is a message from Haskell: %@", msg) |])
+                        > nslog :: String -> IO ()
+                        > nslog msg = $(objc ['msg] ''() [cexp| NSLog(@"Here is a message from Haskell: %@", msg) |])
                         .
                         For more information, see <https://github.com/mchakravarty/language-c-inline/wiki>.
                         .
@@ -47,6 +47,8 @@
                         tests/objc/app/HSApp.app/Contents/Resources/en.lproj/Credits.rtf
                         tests/objc/app/HSApp.app/Contents/Resources/en.lproj/InfoPlist.strings
                         tests/objc/app/HSApp.app/Contents/Resources/en.lproj/MainMenu.nib
+                        tests/objc/minimal/Makefile
+                        tests/objc/minimal/Main.hs
 
 Source-repository head
   Type:                 git
diff --git a/tests/objc/minimal/Main.hs b/tests/objc/minimal/Main.hs
new file mode 100644
--- /dev/null
+++ b/tests/objc/minimal/Main.hs
@@ -0,0 +1,15 @@
+{-# LANGUAGE TemplateHaskell, QuasiQuotes #-}
+
+import Language.C.Quote.ObjC
+import Language.C.Inline.ObjC
+
+
+objc_import ["<Foundation/Foundation.h>"]
+
+nslog :: String -> IO ()
+nslog msg = $(objc ['msg] ''() [cexp| NSLog(@"Here is a message from Haskell: %@", msg) |])
+
+objc_emit
+
+
+main = objc_initialise >> nslog "I like Objective-C!"
diff --git a/tests/objc/minimal/Makefile b/tests/objc/minimal/Makefile
new file mode 100644
--- /dev/null
+++ b/tests/objc/minimal/Makefile
@@ -0,0 +1,22 @@
+HC      = ghc
+HCFLAGS = 
+LDFLAGS = -package template-haskell -package language-c-quote -package language-c-inline -framework Foundation
+
+OBJS = Main.o Main_objc.o
+
+default: Minimal
+
+%.o: %.hs
+	$(HC) -c $< $(HCFLAGS)
+
+Main.o:
+
+Main_objc.m: Main.o
+
+Minimal: $(OBJS)
+	$(HC) -o $@ $^ $(LDFLAGS)
+
+.PHONY: clean
+
+clean:
+	rm -f *.o *.hi Main_objc.[hm] Minimal
