
B++ Programming Language
B++ is a beginner-friendly programming language that is similar to Python, designed to be easy, readable and fun. It utilizes plain English commands and has a lightweight interpreter that runs in the terminal. B++ does away with complex syntax in favor of natural phrases, such as:
say "Hello World!"→ prints textset x to 5→ creates and updates variablesadd 1 to x/subtract 2 from x/multiply x by 3/divide x by 4→ math operationsrepeat 5 times: ... end→ loopsif x is 10: ... end→ conditional logic
