Top 1K Features Creators Events Podcasts Books Extensions Interviews Blog Explorer CSV

Cyclone

< >

Cyclone is a programming language created in 2001.

#1061on PLDB 23Years Old
Homepage · Wikipedia

The Cyclone programming language is intended to be a safe dialect of the C language. Cyclone is designed to avoid buffer overflows and other vulnerabilities that are possible in C programs, without losing the power and convenience of C as a tool for system programming. Cyclone development was started as a joint project of AT&T Labs Research and Greg Morrisett's group at Cornell in 2001. Read more on Wikipedia...


Example from hello-world:
#include <stdio.h> int main() { printf("Hello World\n"); return 0; }
Example from Wikipedia:
char *itoa(int i) { char buf[20], *z; sprintf(buf,"%d",i); z = buf; return z; }

Language features

Feature Supported Example Token
Print() Debugging ✓ printf

- Build the next great programming language · Add · About · Search · Keywords · Livestreams · Labs · Resources · Acknowledgements

Built with Scroll v144.0.0