Cyclone (programming language): Difference between revisions

Content deleted Content added
Examples: start with what?
Tags: Mobile edit Mobile app edit
Tags: Mobile edit Mobile app edit
Line 118:
</source>
Cyclone does regional analysis of each segment of code, preventing dangling pointers, such as the one returned from this version of <code>itoa</code>. All of the local variables in a given scope are considered to be part of the same region, separate from the heap or any other local region. Thus, when analyzing <code>itoa</code>, the compiler would see that <code>z</code> is a pointer into the local stack, and would report an error.
 
===Manual memory management===
{{Empty section|date=January 2011}}
 
==See also==