🚀 Simple Programming Language IDE
Write code on the left, click "Run Code" to execute.
Supported features: variables, arithmetic, if/while statements, print function
x = 5
x + y * 2
print("hello")
if x > 0: ...
while x < 10: ...
"hello world"