Beginner
Assign values with put/into and set/to, use the add command.
put/into
set/to
add
examples/variables.bubble
-- Variables and assignment in Bubble -- HyperTalk style: put <value> into <variable>put "Bubble" into languageput 2024 into year say "Language:" && languagesay "Year:" && year -- Alternative style: set <variable> to <value>set version to 1set greeting to "Hello from" && language && "v" & version say greeting -- The 'add' commandput 0 into counteradd 1 to counteradd 1 to counteradd 1 to countersay "Counter:" && counter
All examples