#include <LiquidCrystal.h>
LiquidCrystal lcd(8, 9, 10, 11, 12, 13);
void setup() {
lcd.begin(16, 2);
lcd.print("isnan khalil ");
}
void loop() {
lcd.setCursor(0, 1);
lcd.print("gibran hasibuan");
delay(30);
lcd.scrollDisplayLeft();
delay(30);
}