87888990919293949596979899100
// Release the memory contents l.free(); // Using LBuffer LBuffer lbuf = new LBuffer(1000); lbuf.putInt(0, 10); int ten = lbuf.getInt(0); lbuf.address(); // memory address lbuf.release(); // deallocate the memory System.out.println("done."); }