Skip to content
This repository was archived by the owner on Mar 9, 2025. It is now read-only.
/ cx Public archive

C* is a hybrid low-level/high-level systems programming language focused on performance and productivity.

License

Notifications You must be signed in to change notification settings

emlai/cx

Folders and files

NameName
Last commit message
Last commit date

Latest commit

8b0e1fd · May 17, 2023
Oct 17, 2021
Oct 28, 2021
Oct 26, 2021
Jul 17, 2021
Oct 17, 2021
Oct 17, 2021
Oct 17, 2021
Nov 7, 2020
Jan 18, 2019
Oct 24, 2021
Jul 18, 2021
Mar 12, 2021
May 17, 2023

Repository files navigation

The C* Programming Language

C* (pronounced "C star") is a C-based hybrid low-level/high-level programming language focused on runtime performance and developer productivity (in this order of priority). The language is simple and unopinionated, supporting imperative, generic, data-oriented, functional, and object-oriented programming.

Learn more about the language at https://cx-language.github.io/.

The project is still in early stages of development: some planned features have not yet been implemented, existing ones are subject to change, and the documentation is scarce.

Contributing

Contributions are welcome. See the GitHub issues and the Trello board for the project backlog. To ask a question or open a discussion, create an issue or join the C* Discord server.

Building from source

Compiling C* requires a C++17 compiler, CMake, and LLVM/Clang 12.

To run the tests, install lit and its optional dependencies via pip:

sudo python3 -m pip install lit psutil

After this, the following commands can be invoked from the build directory:

  • cmake --build . builds the project.
  • cmake --build . --target check runs the test suite.

The C++ code style is enforced by ClangFormat and ClangTidy:

  • Run the format CMake target to format the code.
  • Run the lint CMake target to check if the code is formatted.

License

C* is licensed under the MIT license, a permissive free software license. See the file LICENSE.txt for the full license text.