BananaOS/test/sbin/free.lua
2025-02-21 00:33:21 -05:00

5 lines
192 B
Lua

local computer = require("computer")
local free = computer.freeMemory()
local total = computer.totalMemory()
print(string.format("Total%12d\nUsed%13d\nFree%13d\n", total, total - free, free))