lem0nify
lem0nify
I've tried to build from `dev` branch but faced an error on CMake stage: ```shell lem0nify@arch ~/src % git clone https://github.com/c3lang/c3c Cloning into 'c3c'... remote: Enumerating objects: 33636, done. remote:...
```shell lem0nify@arch ~/code/c3/hello % cat src/main.c3 module hello; import std::io; fn int main() { io::printn("Hello, world!"); return 0; } lem0nify@arch ~/code/c3/hello % c3c build -Oz && du -h --apparent-size build/hello...
@lerno I have default `project.json` created by `c3c init`: ```json5 { // Language version of C3. "langrev": "1", // Warnings used for all targets. "warnings": [ "no-unused" ], // Directories...
Sorry for the delay. Yes, it seems now it works as expected: ```shell lem0nify@arch ~/code/c3/hello % cat src/main.c3 module hello; import std::io; fn int main() { io::printn("Hello, world!"); return 0;...
> Great! Do we need to try to make it smaller? Only if you don't have more important tasks. :)
when?