11 lines
179 B
C
11 lines
179 B
C
|
|
#include <blue/object/number.h>
|
||
|
|
#include <stdio.h>
|
||
|
|
|
||
|
|
int main(void)
|
||
|
|
{
|
||
|
|
b_number *number = b_number_create_float(6.8);
|
||
|
|
|
||
|
|
printf("number=%zd\n", B_NUMBER_IVAL(number));
|
||
|
|
return 0;
|
||
|
|
}
|