Ready to Start Your Career?

By: Rattar
May 21, 2017
Getting Available Memory from Juliar.Future (Juliar Compiler)

By: Rattar
May 21, 2017

- Sometimes an application can take up a lot of memory and you might need to reduce it.
- Find out how much memory some object or class takes for debugging purposes
function main() = {}Then inside of it, let's put the code:
int x = availableMemory();
print("available memory = ");
printLine(x);
This will print out available memory. Feel free to check different objects this way.One example is:int x = availableMemory();
string y = "Some random string I am trying to find memory";
print(- x availableMemory());
Good luck and have fun using the available memory command!