Skip to content

Frequently Asked Questions

Answers to common questions about LOVE-LANG.

Love is a language, and as such, it should be able to express itself in a way that is natural to the user.

Traditional programming languages force you to think in their syntax. LOVE-LANG flips this: the language adapts to how you express intent. By making language a first-class citizen, LOVE programmes are closer to formal natural language specs than source code in the traditional sense.


Love is a language, and as such, it should be able to express itself in a way that is natural to the user.

LOVE does have a compiler — but it is a self-compiling evaluator. The evaluator can rewrite itself at runtime, which means the “compiler” is not a separate tool but an intrinsic capability of the language itself.


LOVE does not have a separate runtime. The evaluator is the runtime. Because the bracket hierarchy strictly separates pure computation (L1–L3) from effectful operations (L5), LOVE can be simultaneously interpreted and compiled depending on context.


Racket is a language-oriented programming language, where LOVE is a linguistics programming language.

The differentiation is that Formal Languages are processed by Racket through a runtime, while LOVE mutates its internal interpreter to process multiple language streams according to higher-order constructs governed by the Superautology.

FeatureRacketLOVE-LANG
Extension model#lang macrosSuperautology variants
Bracket levels15 (L1–L5)
Self-modificationLimited via macrosFirst-class evaluator mutation
Grammar structureExternal DSLIsomorphic to parser
Compilation targetRacket VM (+ CS)Any — via Gleam/BEAM/JS

The Superautology is LOVE-LANG’s master invariant — the constitution of the language. All language variants built on top of LOVE must satisfy it. It is the guarantee that LOVE’s self-modification does not break its own semantics.


L0 is the internal representation used by the LOVE evaluator — a linear array of memory containing data in the same order it appears in source, plus pointers. Users generally don’t write L0 directly. It’s the bedrock upon which L1–L5 rest.


Yes. LOVE-LANG is built on Gleam, which targets both the BEAM (Erlang VM) and JavaScript. Via JavaScript, you can compile to WebAssembly. Native binary targets are on the roadmap.


LOVE-LANG is currently at version 1.0.0. The core evaluator and bracket hierarchy are stable. The standard library (std/) is actively growing. We recommend using it for research, tooling DSLs, and meta-programming experiments while the ecosystem matures.


Check out the GitHub repository and open a pull request! The best ways to contribute are:

  • Writing documentation examples
  • Adding standard library functions
  • Building tooling (VS Code extension features, LSP, formatter)
  • Proposing new language invariants via the RFC process