Files
zern/README.md
2025-11-11 14:29:55 +01:00

339 B

zern

A very cool language

Features

  • Clean indentation-based syntax
  • Compiles to x86_64 Assembly
  • Sometimes works
  • Has the pipe operator

Syntax

func fib[n: I64] : I64
    if n <= 1
        return n
    return fib(n-2) + fib(n-1)

func main[] : I64
    for i in 0..20
        fib(i) |> str.from_i64() |> io.print()