mccu/test.c
2025-01-29 23:21:18 +02:00

14 lines
239 B
C

#include <mcutil/test.h>
#include <stdio.h>
#include <stdlib.h>
int main(void) {
int a = 1;
mcu_result_t good = Ok(&a);
mcu_result_t bad = Err("Owo?");
mcu_result_unwrap(good);
mcu_result_unwrap(bad);
return 0;
}