Simple Hello World! for the TextLCD library

Dependencies:   TextLCD mbed

Fork of TextLCD_HelloWorld by Simon Ford

Revision:
3:49f256a49e3a
Parent:
2:ad0b044d0a10
--- a/main.cpp	Sat Dec 04 11:31:07 2010 +0000
+++ b/main.cpp	Fri Nov 01 15:38:16 2013 +0000
@@ -6,5 +6,7 @@
 TextLCD lcd(p15, p16, p17, p18, p19, p20); // rs, e, d4-d7
 
 int main() {
+    int i = 0;
+    
     lcd.printf("Hello World!\n");
 }