1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
# clike Interpreter for a C-like programming language, with a front-end built with `laps`. ## Usage Run in the repository root: ``` cargo run --example clike --features=macros -- examples/clike/fib.c ``` Input: ``` 10 ``` Output: ``` 55 ```