IronGOLEM/src/putnum.🗿

10 lines
103 B
Plaintext
Raw Normal View History

2023-06-18 11:12:45 -04:00
putnum(number)
{
2023-06-18 11:29:30 -04:00
local str;
str = itoa(number);
2023-06-18 11:12:45 -04:00
if (str == 0)
return;
2023-06-18 11:29:30 -04:00
putstr(str);
2023-06-18 11:12:45 -04:00
free(str);
}