Languages Features Creators Calendar CSV Resources Blog About Pricing Add Language
GitHub icon

Cyclone

Cyclone - Programming language

< >

Cyclone is a programming language created in 2001.

#657on PLDB 22Years Old 236Users
1Books 0Papers

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

Books about Cyclone from ISBNdb

title authors year publisher
Cyclone (programming Language) Frederic P. Miller 2010
ldap.html · cyclone.html · lisaac.html

View source

- Build the next great programming language · Search · v2023 · Day 205 · Docs · Acknowledgements · Traffic · Traffic Today · Mirrors · GitHub · feedback@pldb.com