Skip to main content

What is Englang?

Englang is a tiny English-like programming language made for beginners who understand logic but do not want to fight syntax on day one.

Pseudocode that actually runs.

Quick Tutorial

Learn the basics in 5 small steps, then run the demo below.

  1. Start every program with start.
  2. Use set to store values.
  3. Use print to display values.
  4. Use if / else for decisions.
  5. Use loops like while or for each to repeat logic.

Example Program

start
set x to 10.
if x is greater than 5 then begin
  print "big".
else begin
  print "small".
end

Output: big

Demo

Edit and run the pre-filled program.

program.engEnglang V1
Output