some slight progress

map/set still buggy
This commit is contained in:
2026-04-18 16:36:11 +02:00
parent 7ddd7707db
commit 0a6e089581
2 changed files with 4 additions and 3 deletions
+2 -2
View File
@@ -1,12 +1,12 @@
#define CIG_IMPL
#include "cig.h"
int main() {
int main(void) {
with_borrow(allocator) {
int *ints;
set_init(&ints, allocator, .initial_capacity=20);
map_print_mapping_state(ints, stdout);
for ( int i = 0; i < 1000; i++ ) {
for ( int i = 0; i < 20; i++ ) {
set_add(&ints, i);
map_print_mapping_state(ints, stdout);
}