Valkyrie Language

An elegant, efficient, and safe programming language

// 高级示例
micro() {
  type Point = {
    x: number,
    y: number
  }
  
  let p: Point = { x: 10, y: 20 }
  return p.x + p.y
}

Features

features.algebraic-data-type.title

Algebraic Data Types

Safe type operations through pattern matching

Learn More
features.algebraic-subtype.title

Algebraic Subtyping

Verify type constraints at compile time

Learn More
features.algebraic-effect.title

Algebraic Effects

Manage program side effects in declarative way

Learn More

applications.title