summaryrefslogtreecommitdiff
path: root/tests/modules/os/meminfo.lua
blob: e42d4350fb349ab5818bf3e1fd3ba2a7d5ea1f2f (plain)
1
2
3
4
5
6
function main()
    while true do
        print("%d%%", math.floor(os.meminfo("usagerate") * 100))
        os.sleep(1000)
    end
end