Skip to content

Getting started | Local literal variables

Andrzej edited this page Oct 18, 2025 · 5 revisions

What are literal variables?

Literal variables store values that represent data that can be written down like text or numbers (exceptions apply)

How to create a literal variable?

To create one, simply do this:

$myVariable = "Hello, World!"
$myVar2 = 2137
$var3 = true

And you can later use these values for whatever you fancy.

Clone this wiki locally