Elementary | Middle
Middle | High
AI
Use Cases
Teaching
Tools
Explore our languages
Start a new project
Open a blank sandbox in any language.
Company
Community
Explore
Click on one of our programs below to get started coding in the sandbox!
View All
For example, in the short program below, a variable `text` is passed as an argument to the `printText` function: function start(){ var text = "This is some text."; printText(text); } function printText(input){ println(input); }