Let your
fluentness
code.

Code Tabs
      
"Loops 5 times"

let i be 5

repeat: until i = 0
  show: i
      
"Check if input is yes or no"
let select be input: "Yes/No: "

if select = "yes"
    show: "Selected yes."

unless select = "no"
    show: "Selected no"
    
else
    show: "Invalid selection."
      
"Add 2 nums"

define add with: a; b
    return (tonumber: a) + (tonumber: b)

show: (add: 5; 10)

Features

Fluentix comes with prepacked-features. It takes the best parts of programming tools and adds its own innovations.

Just code

Fluentix is a simple, multi-purposed programming language for everyone. With it's simple syntax, everyone in every level can code confidently and easily.