Ć is a programming language which can be translated automatically to C, C++, Java, C# and JavaScript. Instead of writing code in all these languages, you can write it once in Ć:
public class HelloCi
{
public static string GetMessage()
{
return "Hello, world!";
}
}
Then translate into target languages using cito
on the command line:
cito -o hello.c hello.ci
cito -o hello.cpp hello.ci
cito -o HelloCi.java hello.ci # Java enforces filenames for public classes
cito -o hello.cs hello.ci
cito -o hello.js hello.ci
The translated code is lightweight (no virtual machine, emulation nor dependencies), human-readable and fits well the target language, including naming conventions and documentation comments.
Ć is not a general-purpose programming language. Instead, it is meant for implementing portable reusable libraries. See the complete language reference.
For build instructions, see the INSTALL file.