CC Shell Hosted by Sourceforge | About | News | Download | Examples | TODO | Development | Authors |

#!/usr/bin/ccsh

[ Examples ]

Here are some examples on some CCSH "scripts".

hello.ccsh
#!/usr/bin/ccsh

/* The Classic 'Hello World' Example */

int main(int argc, char *argv[])
{
   printf("Hello World!\n");
}