2025-11-11 14:31:33 +01:00
2025-11-11 14:29:55 +01:00
2025-11-11 14:31:33 +01:00
2025-07-02 13:56:30 +02:00
2025-06-29 11:36:48 +02:00
2025-06-29 11:36:48 +02:00
2025-11-11 14:29:55 +01:00
2025-08-21 10:34:32 +02:00

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()
Description
Languages
Rust 100%