Horse64 Root is a system language similar to C/C++, reimagined with a focus on approachable syntax, understandable OOP, and some baked-in safety features. This is a sibling variant of the main Horse64 language intended for lower level components.
import str from root.horse64.org
func main -> i32 {
var s <- str.str("Hello from Horse64 Root!")
if failed(str.str) {
return -1
}
print(s)
return 0
}
For more info about features, read here...
To check out who made it, check the Horse64 contributors page since both projects are intertwined.