bubblecode is an English-like programming language inspired by HyperTalk. Programs read almost like plain sentences, making bubblecode one of the easiest languages to pick up.
Hello World
Every bubblecode program starts with the say command, which prints text to the screen.
hello.bubbleThe -- prefix marks a comment. Comments are ignored by the interpreter and are there purely for humans.
How it works
bubblecode runs entirely in your browser through WebAssembly — there’s nothing to download or install. Click Run on any example to execute it, edit the source, and run again.
Your first script
first.bubbleWhat’s next?
- Learn about variables and how assignment works
- Explore control flow with if/else and loops
- Try functions and recursion
- Build interactive programs with
ask