Menu

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.bubble

The -- 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.bubble

What’s next?