Skip to content

Latest commit

 

History

History
22 lines (18 loc) · 1.1 KB

README.md

File metadata and controls

22 lines (18 loc) · 1.1 KB

Actions Status Actions Status Actions Status Actions Status Actions Status

The iris programming language

Modern, minimalist programming language with rust-like syntax.

Hello, World!

import std

fn world(): str {
  ret "World!"
}

fn main() {
  print("Hello, {}\n", world())
}