Cyclone is a programming language created in 2001.
#1072on 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...
#include <stdio.h>
int main() {
printf("Hello World\n");
return 0;
}
char *itoa(int i)
{
char buf[20], *z;
sprintf(buf,"%d",i);
z = buf;
return z;
}
Feature | Supported | Example | Token |
---|---|---|---|
Print() Debugging | ✓ | printf |