#include <LiquidCrystal.h>//This includes the library of lcd into wokwi

LiquidCrystal lcd(12, 11, 10, 9, 8, 7);//LiquidCrystal LCD pins connected to arduino

void setup() {
  lcd.begin(16, 2);
  // you can now interact with the LCD, You can print Hello world
  lcd.print("Hello World!");
}

void loop() {
}