Han – A Korean programming language written in Rust
Korean keywords for programming when English dominates every other language.
A new general purpose compiled language featuring first-class data manipulation, and compile time execution with I/O.
Endianness in the type system is clever, but another language in a saturated field.
Systems programmers interested in low-level data manipulation
Rust · Zig · Carbon
Flux is a compiled, statically typed, general purpose language with the power of C++ and readability of Python.
Offering first-class data manipulation features like packing arrays to types like integers, floats, or structs, or structs to integers, or structs to arrays. Nearly all combinations you could think of for packing, unpacking, and restructuring.
Endianness is built into the type system, and performs automatic conversion on assignments. Example: Say we have A as BE, and B as LE, and B = 0xFAF0, when we do A = B the value of A = 0xF0FA.
// Pack two floats into a u64
def ff_pack(float hi, float lo) -> u64 { float[2] parts = [hi, lo]; return (u64)parts; };
Simple templates allow generic programming without SFINAE. Opt-in ownership syntax without a borrow checker. Universal FFI with the ability to target compiled library functions. Custom operators, OOP with object traits to enforce behavior, so much it sounds too good to be true, but it's real.
I built Flux in about 8 months while homeless. I hope it becomes of use to some of you.
Korean keywords for programming when English dominates every other language.
Sandbox-aware language: agents can enforce permissions even on Mog-written bash commands.
First language designed for LLMs to modify safely with capability permissions.
Built-in reactive runtime and dual JS/WASM targets challenge React and TypeScript dominance.
Safety-first language with explicit Stop-The-World GC and no inheritance — ambitious constraints.
Linear types and LLVM IR bring C-level safety to Python syntax.