Skip to content

DareksCoffee/C2

Repository files navigation

C² Language

A simple and efficient programming language designed for modern software development.

Overview

C² is a compiled language that combines the performance of low-level languages with the simplicity and readability of high-level languages.

Features

  • Static typing with type inference
  • Memory safe compilation
  • Fast execution
  • Simple syntax
  • Cross-platform support

Getting Started

Installation

Download the latest version from the official repository and follow the platform-specific installation guide.

Basic Syntax

Variables and Types

int count = 10
float pi = 3.14159
bool active = true

Functions

func add(int a, int b) -> int {
    return a + b
}

Control Flow

if (count > 5) {
    // Greater than
} else {
    // Less or Equal than 
}

About

Official specification and compiler of the C² programming language.

Resources

License

Code of conduct

Security policy

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors