A simple and efficient programming language designed for modern software development.
C² is a compiled language that combines the performance of low-level languages with the simplicity and readability of high-level languages.
It tries to be as pragmatic as possible, avoiding abstraction and letting the user control the behavior of the language, instead of they being controlled by C².
- Static typing with type inference
- Memory safe compilation
- Fast execution
- Simple syntax
- Cross-platform support
int count = 10
float pi = 3.14159
bool active = truefunc add(int a, int b) -> int {
return a + b
}if (count > 5) {
// Greater than
} else {
// Less or Equal than
}You can find more information here