Cyclone (programming language): Difference between revisions

Content deleted Content added
Fix typo
Line 59:
* <code>*</code> (the normal type)
* <code>@</code> (the never-<code>NULL</code> pointer), and
* <code>?</code> (the only type with [[pointer arithmetic]] allowed, [[fat pointer|"fat" pointerspointer]]s).
The purpose of introducing these new pointer types is to avoid common problems when using pointers. Take for instance a function, called <code>foo</code> that takes a pointer to an int:
<source lang="C">