2026-03-16 10:35:43 +00:00
|
|
|
#include <fx/ds/number.h>
|
2024-10-24 21:33:19 +01:00
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
|
|
int main(void)
|
|
|
|
|
{
|
2026-03-16 10:35:43 +00:00
|
|
|
fx_number *number = fx_number_create_float(6.8);
|
2024-10-24 21:33:19 +01:00
|
|
|
|
2026-03-16 10:35:43 +00:00
|
|
|
printf("number=%zd\n", FX_NUMBER_IVAL(number));
|
|
|
|
|
fx_number_unref(number);
|
2024-10-24 21:33:19 +01:00
|
|
|
return 0;
|
|
|
|
|
}
|