LOADING FLUENT
Jorion Studio  /  v1.0 public preview

"Any sufficiently expressive language becomes indistinguishable from thought."

FLUENT

A programming language with no braces, no semicolons.
Just clean, readable logic that runs.

main.fluent FLUENT 1.0
SCROLL
NO BRACES· NO SEMICOLONS· READS LIKE ENGLISH· AI DUAL-PASS ENGINE· NATIVE GUI· PYTHON INTEROP· OPEN SOURCE·
0

SYMBOLS TO MEMORISE

0x

MORE READABLE

0%

PYTHON COMPATIBLE

POSSIBILITIES

02 / STUDIO

Two projects.
One obsession with language.

CAPABILITY RAIL

Six ideas,
one runtime.

HOVER A COLUMN TO OPEN IT.
TAP ON MOBILE. EACH PANEL IS A
REAL PIECE OF THE LANGUAGE.

01 Paragraph syntax

Paragraph syntax

Fullstop endings. Parentheses for blocks. No symbols to memorise — you write sentences and they run.

print "hello world".
02 Dual-Pass Engine

Dual-Pass Engine

Vague input, typo or ambiguous phrase? Pass one repairs intent, pass two executes it. Silently.

prnt "hi". → print "hi".
03 Native GUI

Native GUI primitives

Windows, buttons and event bindings are language keywords — not a third-party library you bolt on.

make window "Studio".
04 Python interop

Python interop

Borrow any Python module natively. Fluent sits on top of Python, not beside it — no bridges, no glue.

borrow numpy as np.
05 Forgiving runtime

Forgiving by default

The runtime assumes intent, not perfection. Write messy — run clean. Errors explain themselves in plain English.

repeat 3 times ( say "ok" )
06 Studio IDE

Custom PyQt6 IDE

Fluent ships with a purpose-built studio. Edit, run and debug from one window — zero setup, zero config files.

$ fluent studio .
400µs

AVG PASS-1 REPAIR

100%

PYTHON COMPATIBLE

0

SYMBOLS TO MEMORISE

6kb

RUNTIME CORE

FLUENT × MODULES

An orchestrator,
not just a language.

Fluent is a high-level scripting layer that sits on top of the entire Python ecosystem. Borrow live Python classes into Fluent's runtime and manipulate them with plain English. The entire standard library — and every PyPI package — becomes Fluent-native.

Inject any Python class into Fluent's memory at runtime

Call Python methods using readable Fluent syntax

Build full applications — including entire operating systems

modules.fluent
borrow math from python.
make desktop pycall Desktop.
set theme of desktop to "blue".
set password of lock_screen to "1234".

EXECUTION PIPELINE

FLUENT
borrow math from python.
PARSER
resolve → inject Python class
RUNTIME
Python module live in Fluent memory