Hachi – A new systems language built on C++, with built-in auto-free mem mgmt

3 months ago 2

Hachi Mascot

A general purpose, compiled programming language thats simple and easy to use for building performant server-side applications and tools.

GET STARTED

>@ "so", >@ "fmt" myString: "It's over 9000!!!!" mySubString: "9000" myFunc:: {str:String,sub:String}->{AnyT}: ( str: Ri.str substr: Ri.sub returnVar: "" status: strContains: str, substr status = 1 ? ( returnVar: "Success!!" )| status = 0 ? ( returnVar: "Failed." )|( shout: "Something went wrong bro" ) returnVar ) funky: myFunc: myString, mySubString shout: funky

Get going writing your first Hachi program in record time!

# Clone the repository git clone https://gitlab.com/hachi-lang/hachi # Navigate to the directory cd hachi # Install Hachi executable make # Check version hachi -v
Read Entire Article