- This wiki is out of date, use the continuation of this wiki instead
Memory free
From FenixWiki
(Difference between revisions)
Revision as of 13:54, 29 April 2007
Definition
FLOAT memory_free ( )
Returns the free memory total in bytes.
Returns
FLOAT : Free memory total in bytes.
Example
Program example; Begin say("Total memory: " + memory_total()); say("Free memory: " + memory_free() ); Repeat frame; Until(key(_esc)) End
Used in example: say(), memory_total()