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.
- Start every program with
start. - Use
setto store values. - Use
printto display values. - Use
if / elsefor decisions. - Use loops like
whileorfor eachto 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.