More example goodness
diff --git a/examples/delay.py b/examples/delay.py
new file mode 100644
index 0000000..66107ac
--- /dev/null
+++ b/examples/delay.py
@@ -0,0 +1,5 @@
+# Demonstrates use of Arduino-like delay function
+import wiringpi2
+print 'Hello World'
+wiringpi2.delay(1500) # Delay for 1.5 seconds
+print 'Hi again!'