#include "LiquidCrystal.h"
// initialize the library by providing the nuber of pins to it
LiquidCrystal lcd(8,9,4,5,6,7);
void setup() {
}
void loop(){
// set cursor position to start of first line on the LCD
lcd.setCursor(0,0);
//text to print
lcd.print("Ladies and gents");
// set cusor position to start of next line
lcd.clear();
lcd.print("LIVE AND IN THE FLESH");
lcd.clear();
lcd.print("Zyx!!!!!!!");
}