-
Notifications
You must be signed in to change notification settings - Fork 2
Getting started | Local literal variables
Andrzej edited this page Oct 18, 2025
·
5 revisions
Literal variables store values that represent data that can be written down like text or numbers (exceptions apply)
To create one, simply do this:
$myVariable = "Hello, World!"
$myVar2 = 2137
$var3 = true
And you can later use these values for whatever you fancy.
(These tutorials are ordered, start from the top)