There was an error while loading. Please reload this page.
This Wiki page will guide you through the basics of StoryScript.
In StoryScript, Currently, there are 8 types of data. (On a Python Interpreter)
This will list all the Abbreviations used to Declaring a Variable for each keyword.
To declare a variable, You do it like this:
type name = value
You can't use a variable name starting with numbers. like 1122uwu For example, If you wanted to declare an Integer, You could do:
1122uwu
int owo = 5
Or use the var keyword. This will detect the type. And you can't assign 3.14 to Integer. Or else It will throw an Error.
var
To delete a variable you use del keyword.
del
var a = 10 del a
Use typeof function to check the type of the Variable or Data.
var a = 10 typeof (a)
Output:
Types.Integer
Another example:
typeof ("owo")
Types.String