LOADING FLUENT

FLUENT / THE LANGUAGE

Code that reads
like a sentence.

Fluent is an English-first programming language. Every statement is a sentence, every sentence compiles. Here is the grammar, the pipeline, and an honest comparison with Python.

THE LANGUAGE

Three ideas that
change everything.

01 — SYNTAX

Code that reads
like a paragraph.

Traditional languages force you to think in symbols. Fluent lets you think in sentences. Statements end with a fullstop. Logic blocks use parentheses. There's nothing to remember except what you already know — how to write.

No indentation rules. No curly braces. No semicolons.
syntax.fluent
# assign a value
make x 5.
# loop ten times
repeat 10 times (
make x x + 1.
).
02 — AI ENGINE

Messy English.
Perfect execution.

Made a typo? Wrote something vague? When the deterministic parser hits a wall, the silent AI Dual-Pass Engine — powered by Llama 3.3 via Groq — translates your imprecise English into strict Fluent code in milliseconds. You never see the AI. You just see your English work.

Powered by Llama 3.3 · Groq inference
dual-pass.fluent
YOUR INPUT
bump x by 5.
AI Dual-Pass · resolved
EXECUTED AS
make x x + 5.
03 — NATIVE GUI

Windows. Buttons.
All in one sentence.

Fluent ships with a custom PyQt6 IDE — but more importantly, GUI is a first-class citizen of the language itself. Draw real windows. Bind real events. No widget frameworks to install. No boilerplate. Just describe the interface, and it appears.

Custom PyQt6 IDE · live event binding
gui.fluent
create window main 400 by 300.
create button b1 "Click Me" at 50 50 in main.
show window main.
on click of b1 do (
show "Hello World".
).

FLUENT vs PYTHON

Same logic.
Half the noise.

PYTHON 7 lines
READABILITY 42%
FLUENT 3 lines
READABILITY 96%