/* I am practising code that I have found
* on youtube
* Arduino IDE 2.0 - Testing Release Candidate 3
*
* Video Time 16:48
*
* My favorite discord channel is
* Engineering Artists
*/
void setup() {
// put your setup code here, to run once:
Serial.begin(9600);
}
void loop() {
// put your main code here, to run repeatedly:
Serial.println("Hello World!");
delay(1000);
}