fx: implement a proper value-type mechanism

This commit is contained in:
2026-05-17 17:09:05 +01:00
parent 65a7a025c5
commit f1258489d1
56 changed files with 1343 additions and 1112 deletions
+10
View File
@@ -0,0 +1,10 @@
#include <fx/value-type.h>
#include <fx/value.h>
#include <stdio.h>
int main(void)
{
fx_value v = FX_I32(1024);
printf("%u\n", __fx_type_get_value_type(FX_TYPE_I64));
return 0;
}