Measures Concepts
GitHub icon

Cyclone

Cyclone - Programming language

< >

Cyclone is a programming language created in 2001.

#706on PLDB 23Years Old

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 Token Example
Print() Debugging ✓ printf

View source

- Build the next great programming language · Search · Add Language · Features · Creators · Resources · About · Blog · Acknowledgements · Queries · Stats · Sponsor · Day 605 · feedback@pldb.io · Logout