February 17, 2003
Lysistrata Project

www.lysistrataproject.com

On Monday, March 3rd, 2003, the first-ever world-wide theatrical event for peace will happen in a city near you. Don't miss this unique opportunity to stand up for peace in your community, and provide a humorous entry into a healthy dialogue about current affairs. Attend or help plan a reading of Lysistrata, Aristophanes' anti-war comedy, to protest the rush to war on Iraq. Many of the readings will benefit non-profit organizations working for peace and humanitarian aid in Iraq.

lplogosm.jpg


Posted by a.rawlings at February 17, 2003 04:43 PM
Comments

This is another function provided for dealing with the heap. After you've created some space in the Heap, it's yours until you let go of it. When your program is done using it, you have to explicitly tell the computer that you don't need it anymore or the computer will save it for your future use (or until your program quits, when it knows you won't be needing the memory anymore). The call to simply tells the computer that you had this space, but you're done and the memory can be freed for use by something else later on.

Posted by: Adam on January 19, 2004 03:17 AM

When compared to the Stack, the Heap is a simple thing to understand. All the memory that's left over is "in the Heap" (excepting some special cases and some reserve). There is little structure, but in return for this freedom of movement you must create and destroy any boundaries you need. And it is always possible that the heap might simply not have enough space for you.

Posted by: Justinian on January 19, 2004 03:18 AM

Seth Roby graduated in May of 2003 with a double major in English and Computer Science, the Macintosh part of a three-person Macintosh, Linux, and Windows graduating triumvirate.

Posted by: Helegor on January 19, 2004 03:19 AM

But some variables are immortal. These variables are declared outside of blocks, outside of functions. Since they don't have a block to exist in they are called global variables (as opposed to local variables), because they exist in all blocks, everywhere, and they never go out of scope. Although powerful, these kinds of variables are generally frowned upon because they encourage bad program design.

Posted by: Martha on January 19, 2004 03:20 AM

These secret identities serve a variety of purposes, and they help us to understand how variables work. In this lesson, we'll be writing a little less code than we've done in previous articles, but we'll be taking a detailed look at how variables live and work.

Posted by: Emanuel on January 19, 2004 03:21 AM
-->