Cecile 0.0.3

Cecile Toy Programming Language that is designed to be simple, fast
Cecile-0.0.3 is not a library.
Visit the last successful build: Cecile-0.1.7

⭐ Introduction

Welcome to Cecile, a modern programming language designed for simplicity and flexibility.

🍎 Overview

Welcome to the Cecile Toy programming language.

The syntax of Cecile is influenced by traditional programming languages like JavaScript, Go, and Rust, with a strong emphasis on developer experience, readability and ease-of-use.

Cecile is written in Rust. Some of performance matter part is written in Unsafe Rust that makes fast enough to compete with traditional interpreted languages like Javascript, Python.

📕 Features

  • Bytecode compiler +
  • Garbage collected in runtime
  • Type Supported

Syntax examples

Variable Declaration

// Variable Declaration
let a: int = 1;
let b: String = "hello";