This wiki is out of date, use the continuation of this wiki instead

Memory total

From FenixWiki

Revision as of 13:52, 29 April 2007 by Sandman (Talk | contribs)
(diff) ←Older revision | Current revision (diff) | Newer revision→ (diff)
Jump to: navigation, search


Definition

FLOAT memory_total ( )

Returns the memory total in bytes.

Returns

FLOAT : 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_free()

Personal tools