**Question:**how to compile this arduino code in replit
Repl link:
#include <Keyboard.h>
void setup() {
// put your setup code here, to run once:
Keyboard.begin();
}
void loop() {
for (int i=0; i<26; i++) {
Keyboard.write(i+65); //A-Z
Keyboard.write(i+97); //a-z
Keyboard.write(i+48); //0-9
delay(100);
}
Keyboard.releaseAll();
delay(1000);
}