ezLang is a programming language with an extremely simple syntax designed for fast prototyping
output "Hello, world!"
Output: "Hello, world!"
operate 5 - 4
Output: 1.0
operate 3 ** 2
Output: 8.0
if 3 == 3
Output: True
ezLang is a programming language with an extremely simple syntax designed for fast prototyping
PythonMIT