ti83-sdk/main.c

8 lines
88 B
C
Raw Normal View History

2023-10-07 23:32:30 +00:00
#include <assert.h>
2023-10-08 12:39:40 +00:00
#include <stddef.h>
2023-10-07 23:32:30 +00:00
void main() {
2023-10-08 12:39:40 +00:00
bool b = 0;
assert(b);
2023-10-07 23:32:30 +00:00
}