Skip to content

Instantly share code, notes, and snippets.

View dellamora's full-sized avatar
:shipit:
^^

Francielle Dellamora dellamora

:shipit:
^^
View GitHub Profile
@VictorTaelin
VictorTaelin / kolmolang.hvml
Last active March 24, 2025 11:29
Kolmogorov Complexity minimizing language
import Prelude.hvml
// Types
// -----
// Type ::= ⊥ | [Type]
// - ⊥ = ⊥ = the Empty type
// - [⊥] = ⊤ = the Unit type
// - [[⊥]] = ℕ = the Nat type
// - [[[⊥]]] = ℕ* = the List type