A custom English-like programming language built in C++
C-moh is a beginner-friendly, English-style programming language written in C++ and inspired by Pythonβs readability.
Simple and readable code structure for beginners.
Supports variables, print, if, and while statements.
Clean block structure using indentation.
Easy to modify and experiment with new features.
let x = 3
print "Start Loop"
while x > 0:
print x
x = x - 1
print "Done"
END
Grab the full source code on GitHub:
GitHub Repo