10 lines
102 B
C
Raw Normal View History

2026-03-25 18:47:44 +01:00
#include <ch32fun.h>
int main(void) {
2026-04-05 01:31:47 +02:00
unsigned int x = 0;
while(true) {
x = x+1;
}
2026-03-25 18:47:44 +01:00
return 0;
}