SkillAgentSearch skills...

Ixion

🔮 modern scripting programming language

Install / Use

/learn @ixionlang/Ixion

README

<div align="center"> <img src="https://github.com/ixionlang/ixion/blob/main/assets/logo.png" width="500">

Multi-paradigm compiled programming language for the jvm platform.

</div>

[!IMPORTANT] Before installing the language, install Microsoft JDK 21.

greeting in Ixion:

use <prelude>

def main(){
    const langs = [
        "Hello, world!",
        "¡Hola Mundo!",
        "Γειά σου Κόσμε!",
        "Привет, мир!",
        "こんにちは世界!"
    ]
    println(langs)
}

pattern matching:

use <prelude>

type number = int | float

pub def main(){
    print_type(10)
    print_type(10.0f)
}

def print_type(num : number){
    case num {
        int i => println("value " + i + " is integer")
        float f => println("value " + f + " is float")
    }
}

Contributions

We will review and help with all reasonable pull requests as long as the guidelines below are met.

  • The license header must be applied to all java source code files.
  • IDE or system-related files should be added to the .gitignore, never committed in pull requests.
  • In general, check existing code to make sure your code matches relatively close to the code already in the project.
  • Favour readability over compactness.
  • If you need help, check out the Google Java Style Guide for a reference.
View on GitHub
GitHub Stars204
CategoryDesign
Updated2d ago
Forks10

Languages

Kotlin

Security Score

100/100

Audited on Mar 25, 2026

No findings