MiniScript+ Documentation
Learn MiniScript+ through small examples, visual execution, debugging and the tools built into ScripticX.
What is MiniScript+?
MiniScript+ is a small interpreted language made for learning programming logic. It keeps the syntax readable, then shows what happens inside the program through variables, output, AST views and step-by-step execution.
Example
X = 0 WHILE X < 3 PRINT X X = X + 1 END
How it works
- The engine parses each line into structured instructions
- Expressions are evaluated through an AST, so operator priority stays correct
- The debugger shows the current line, variables and output while the program runs
- The analyzer estimates time and space complexity from the program structure
What ScripticX adds around the language
The language is only one part of the learning flow. ScripticX also gives students a modern workspace where they can test code, save multi-file snippet projects, solve problems and collaborate live.
- Automatic tests with per-case feedback
- Daily code challenges with bonus points
- AST and flowchart visualization for understanding program structure
- Live coding sessions with chat, presence and shared code
- RO/EN interface and localized educational content