Hex

A simple yet intuitive programming language,
ensuring stability, safety, and efficiency.

Get Started (rust- x86_64 windows, linux & macos)
collections_mutation.hx
val numbers = [1, 2, 3, 4]
val size = numbers.size()
val n = numbers.get(2)

numbers.push(5)

io::print(size, n, numbers[4])
io::print(numbers)

numbers.pop()

io::print(numbers)
io::print(numbers[2])
3 • 3

Why Hex?

Lightning Fast

Blazing fast interpretation and runtime performance

Memory Safe

Built-in memory safety without garbage collection

Zero Cost

High-level abstractions with no runtime overhead

Simple Syntax

Clean, readable code that's easy to learn and maintain