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))