build: re-enable namespace-specific tests

This commit is contained in:
2026-05-05 21:17:21 +01:00
parent 4b20f8ca0e
commit c29465a97d
27 changed files with 273 additions and 447 deletions
+5 -4
View File
@@ -1,11 +1,12 @@
#include <fx/ds/number.h>
#include <fx/double.h>
#include <stdio.h>
int main(void)
{
fx_number *number = fx_number_create_float(6.8);
fx_double *d = fx_double_create(6.8);
printf("double=%lf\n", fx_double_get_value(d));
fx_double_unref(d);
printf("number=%zd\n", FX_NUMBER_IVAL(number));
fx_number_unref(number);
return 0;
}