Results 134 comments of Piotr Fusik

I've just released Fusion 3.2.0, which includes major changes in the VSCode extension. Now it reports all errors, not only syntax errors. "Go to definition" works. More features (autocomplete etc)...

3.2.2 has symbols and snippets: ![image](https://github.com/fusionlanguage/fut/assets/351822/f5934c52-0dcc-47a6-8dc5-a8a55596d5a3)

Current status: the AST and the parser ported to Ć, the semantic pass partially ported.

Yes, but a .NET NativeAOT binary is going to be tens of megabytes and slower than Ć transpiled to C++. Also, since Ć is about portability between programming languages, it...

Current status: - Semantic analysis ported - covered by "CiCheck" tests for Java and JavaScript. - The remaining part are backends - started.

Current status: all backends ported, but with some `native` C# blocks.

Great news: we have `cito` in C++! It passes all the tests and runs much faster than the C# version. Next steps: - Test on macOS and Linux - Add...

> Test on macOS and Linux Works fine with gcc 13 on Fedora 38. xcode on macOS doesn't implement enough C++20. @pdelewski How to install gcc 13? > Add CI...

sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test sudo apt install g++-13

The language is now fully implemented in itself, except for I/O. Native binaries for Windows, macOS and Linux can be built with C++20 compilers. A release is coming soon. The...