Exit status 0xc0000135

I get this when I try to verify an example script, any idea on how to solve this?

In file included from C:\Users\stasi\AppData\Local\Arduino15\packages\digistump\hardware\avr\1.7.5\libraries\DigisparkKeyboard/DigiKeyboard.h:17:0,
from C:\Users\stasi\AppData\Local\Temp.arduinoIDE-unsaved2022114-18600-imrzi0.zk4lm\sketch_dec4a\sketch_dec4a.ino:9:
C:\Users\stasi\AppData\Local\Arduino15\packages\digistump\hardware\avr\1.7.5\libraries\DigisparkKeyboard/keylayouts.h:5229:2: warning: #warning "Using default layout (LAYOUT_US_ENGLISH)" [-Wcpp]
#warning "Using default layout (LAYOUT_US_ENGLISH)"
^~~~~~~
Sketch uses 2846 bytes (42%) of program storage space. Maximum is 6650 bytes.
Global variables use 82 bytes (16%) of dynamic memory, leaving 430 bytes for local variables. Maximum is 512 bytes.

So post your code correct in code tags as described In the getting the best from this forum sticky post you see at the start of each section.

I have moved your post here because you posted in the section that is only for getting the IDE to work

not sure there's anything wrong except for a warning

Welcome to the forum

The message is a warning rather than an error. Does the sketch upload correctly and work afterwards ?

Please post the sketch here, using code tags (the </> icon) when you do

it doesn't upload correctly

</
#include "DigiKeyboard.h"

// notepad
const uint8_t key_arr_0[] PROGMEM = {0,17, 0,18, 0,23, 0,8, 0,19, 0,4, 0,7};
// Hello World!
const uint8_t key_arr_1[] PROGMEM = {2,11, 0,8, 0,15, 0,15, 0,18, 0,44, 2,26, 0,18, 0,21, 0,15, 0,7, 2,30};

void duckyString(const uint8_t* keys, size_t len) {
for(size_t i=0; i<len; i+=2) {
DigiKeyboard.sendKeyStroke(pgm_read_byte_near(keys + i+1), pgm_read_byte_near(keys + i));
}
}

void setup() {
pinMode(1, OUTPUT); // Enable LED
digitalWrite(1, LOW); // Turn LED off
DigiKeyboard.sendKeyStroke(0); // Tell computer no key is pressed

DigiKeyboard.delay(1000); // DELAY 1000
DigiKeyboard.delay(500);
DigiKeyboard.sendKeyStroke(21, 8); // GUI r
DigiKeyboard.delay(500);
duckyString(key_arr_0, sizeof(key_arr_0)); // STRING notepad
DigiKeyboard.delay(500);
DigiKeyboard.sendKeyStroke(40, 0); // ENTER
DigiKeyboard.delay(500);
duckyString(key_arr_1, sizeof(key_arr_1)); // STRING Hello World!
DigiKeyboard.delay(500);

}

void loop() {}

Did you miss

I don't understand what u mean, sorry

#include "DigiKeyboard.h"

// notepad
const uint8_t key_arr_0[] PROGMEM = {0,17, 0,18, 0,23, 0,8, 0,19, 0,4, 0,7};
// Hello World!
const uint8_t key_arr_1[] PROGMEM = {2,11, 0,8, 0,15, 0,15, 0,18, 0,44, 2,26, 0,18, 0,21, 0,15, 0,7, 2,30};

void duckyString(const uint8_t* keys, size_t len) {  
    for(size_t i=0; i<len; i+=2) {
        DigiKeyboard.sendKeyStroke(pgm_read_byte_near(keys + i+1), pgm_read_byte_near(keys + i));
    }
}

void setup() {
    pinMode(1, OUTPUT); // Enable LED
    digitalWrite(1, LOW); // Turn LED off
    DigiKeyboard.sendKeyStroke(0); // Tell computer no key is pressed

    DigiKeyboard.delay(1000); // DELAY 1000
    DigiKeyboard.delay(500);
    DigiKeyboard.sendKeyStroke(21, 8); // GUI r
    DigiKeyboard.delay(500);
    duckyString(key_arr_0, sizeof(key_arr_0)); // STRING notepad
    DigiKeyboard.delay(500);
    DigiKeyboard.sendKeyStroke(40, 0); // ENTER
    DigiKeyboard.delay(500);
    duckyString(key_arr_1, sizeof(key_arr_1)); // STRING Hello World!
    DigiKeyboard.delay(500);
}

void loop() {}

That's better. See how much easier the code is to scroll through and copy for examination

In the IDE under File> Preferences, check the box to enable verbose output during upload and post the complete message you get.

What Arduino are you using? What version of the IDE?