IronGOLEM/src/putnum.🗿

7 lines
72 B
Plaintext
Raw Normal View History

2023-06-18 11:12:45 -04:00
putnum(number)
{
2023-07-24 23:43:10 -04:00
local str = ntoa(number);
2023-06-18 11:29:30 -04:00
putstr(str);
2023-06-18 11:12:45 -04:00
free(str);
}