Hey, Let's Code!
Choose your language and start coding! No pressure, just play around!
Easy Steps:
- Select a programming language below.
- Type some code on the right.
- Hit "Run" to see what it does.
- Use the Quick Tips below for guidance.
PROGRAMMING LANGUAGES
Quick Tips: Programming Fundamentals for
Printing
+
print("Hello, World!")
Variables
+
name = "Alex"
Arithmetic
+
x = 5 + 3
Conditionals
+
if age >= 18: print("Adult")
Loops
+
for i in range(3): print(i)
Your Learning Progress
0% Complete
Code Analysis Feedback
Output
# Click "Run" to see your result!