pupdates

CCI v5.1.0 Release

CCI v5.1.0 has been released!

CCI is a tool to let you run one-file C programs using a JIT compiler, instead of requiring a dedicated compilation phase.

The recommended installation method is to use pipx. If you have pipx installed, you can install Homf via pipx install cci.

Example usage:

$ ls
hello-world.c
$ cat hello-world.c 
#!/usr/bin/env cci
// cci: -std=c11 -Wall -pedantic-errors

#include <stdio.h>

int main() {
    printf("Hello, world!\n");
    return 0;
}
$ chmod +x hello-world.c 
$ ./hello-world.c 
Hello, world!
$ ls
hello-world.c*
$ 

Contact Info

If you run into problems, please open an Issue on GitHub to discuss it!

If you’re using Homf, please reach out and let me know what you’re using it for and what you think of it!

You can contact me on Mastodon (@puppy@weirder.earth) or via email (ellen AT duckinator DOT net).