Home

Awesome

Origins

pico-c is a project created by Zik at https://code.google.com/p/picoc. The projet is now hosted at https://gitlab.com/zsaleeba/picoc.

pico-c intends to be a very light C interpreter. pico-c is very small, but include many standard libraries.

The content

Initially those libraries were natively integrated into pico-c:

Some of them were improved:

We have planned to add support for 3 other useful libraries:

The pico-c syntax

$ pico-c -h
pico-c.exe, A very small C interpreter
Usage: pico-c.exe [-h] [-i] [-m] [-n] [-o] [<filename1>...] [- <arg1>...]
        -h: this help message
        -i: force interactive mode at the end of scripts
        -m: run main() function automaticaly
        -n: don't print prompt
        -o: the original "old" mode
        -v: print version
Exemples:
        pico-c.exe script1.pcc script2.pcc
        pico-c.exe -i script.pcc
        pico-c.exe -m script1.pcc script2.pcc - arg1 agr2

Cyd