Camellia is a general-purpose programming language characterized by:
- Interfacial Design: Emphasizing modular and extensible interfaces.
- Lightweight: Minimal resource usage.
- High Versatility: Broad applicability across domains.
- Zero Platform Dependency: Designed to work without platform-specific dependencies.
Camellia can be executed either via interpretation or compilation, providing developers with flexibility depending on their needs.
Camellia is under active development using C++ and CMake. The language aims to empower developers with a robust, portable, and adaptable tool for diverse programming scenarios. The project is hosted at:
As Camellia is still in development, it must be built from source. Follow these steps to set up Camellia:
- Clone the repository:
git clone https://github.com/saisesai/camellia.git
- Build the project using CMake:
cd camellia/camellia/cc mkdir build && cd build cmake .. make
- Run the resulting executable to begin using Camellia.
Detailed usage instructions will be provided in future releases. For now, build the project and explore its features as they are developed.
Contributions to Camellia are welcome! Follow these steps to get involved:
- Fork this repository.
- Create your feature branch:
git checkout -b feature/your-feature
- Commit your changes:
git commit -m "Add some feature"
- Push to the branch:
git push origin feature/your-feature
- Submit a Pull Request.
Camellia is licensed under BSD 3-Clause License:
BSD 3-Clause License
Copyright (c) 2024, camellia development team
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
3. Neither the name of the copyright holder nor the names of its
contributors may be used to endorse or promote products derived from
this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- Implement a compiler from
lia
toC
using C++.
- Achieve self-hosting capabilities.
- Develop an interpreter for the language.
- Implement machine code generation and Just-In-Time (JIT) compilation.
Additional information (optional): Include contact details, acknowledgments, or plans for future development.