Skip to content

Latest commit

 

History

History
11 lines (9 loc) · 168 Bytes

README.md

File metadata and controls

11 lines (9 loc) · 168 Bytes

Dragonfly Compiler

A high-level multi-paradigm programming language.

fn add_one(x int) -> int {
  return x + 1
}

const number = 10
println(add_one(number))