ScratchScript 1.0 Help

Variables

In ScratchScript, variables are defined with the let keyword like so:

let x = 1;

Optionally, you can also specify the type of the variable:

let x: number = 1;
Last modified: 02 мая 2024