VeinLang

A open source high-level strictly-typed programming language with a support standalone OS, arm and quantum computing support.

Benefits

  • Free. Cross-platform. Open source.
  • Cross-platform standard library.
  • Machine Learning: Add vision algorithms, speech processing, predictive models, and more to your apps.﹡
  • Internet of Things: Build IoT applications for your devices and sensors with Vein.﹡
  • Quantum: Develop quantum operations, run programs in simulators.﹡
  • CLI: Write better scripts and console applications.﹡

Hello, VeinLang!

#use "vein/lang"
#space "hello_world"

public greet(): String {
    return "Hello, ";
}
internal master(): Void {
    Out.println(greet(), "World");
}