ScripticX Knowledge

Search ScripticX Knowledge

Search documentation, trust, and legal articles.

Learn

MiniScript+ basics

Learn the core syntax of the language used on ScripticX.

Updated June 13, 20266 min read

MiniScript+ keeps syntax intentionally compact so beginners can focus on reasoning and problem solving.

Values and variables

Variables store values that can be reused or changed:

MiniScript+
1name = "Ana"2score = 1034PRINT name5PRINT score

Text values use quotation marks. Numbers can be used directly in calculations.

Conditions

Conditions let a program choose what to do:

MiniScript+
1score = 8023IF score >= 50 THEN4PRINT "Passed"5ELSE6PRINT "Try again"7END

The statements between IF and END run according to whether the condition is true or false.

Loops

Loops repeat a block of instructions:

MiniScript+
1number = 123WHILE number <= 54PRINT number5number = number + 16END

Make sure the condition eventually becomes false. Otherwise, the loop can continue indefinitely.

Input and output

Use input to receive a value and output to show a result:

MiniScript+
1INPUT name2PRINT "Hello " + name