Overview

Lyric is an experimental programming language designed for clarity and expressiveness. It emphasizes readable syntax, intuitive structure, and the freedom to write code that feels natural.

Design Principles

Lyric is built on the idea that programming languages should amplify human creativity rather than stand in its way. Every feature is designed with the developer in mind, focusing on:

Example

Here's a simple example of Lyric code:

# Define a function to calculate fibonacci numbers
def fib(int n) {
    if n <= 1 
        return n
    end
    return fib(n - 1) + fib(n - 2)
}

def main() {
    int result = fib(10)
    print("The 10th fibonacci number is: ", result)
}    

To run the script:

$ lyric fib.ly
The 10th fibonacci number is:  55

Documentation

About This Project

Lyric was built with Python 3 and developed via human–AI collaboration at MiraNova Studios. It is no longer an actively developed project, but its documentation is preserved here for anyone who wants to explore it. The source is available on GitHub, and it's released under the GPL v3 license.


← Back to Projects