Hello World
The smallest possible InfiniteScript program.
Say "Hello World!"
Explore small programs that demonstrate the core InfiniteScript syntax and the direction of the language.
The smallest possible InfiniteScript program.
Say "Hello World!"
Store information and modify it later.
Local Storage Money = 100 Change Money by 50 Say Money
Let your program make decisions.
If Money > 100 Say "Rich!" Else Say "Keep earning." End
Repeat code over a range of numbers.
For i = 1 to 5 Say i End
Create reusable behaviour with inputs.
Function GiveMoney Amount Change Money by Amount Return Money End GiveMoney 50
Collect information from the user.
Input PlayerName Say PlayerName
Generate a random number between two values.
Random Number Roll = 1 to 6 Say Roll
Define a native Windows interface directly in InfiniteScript.
UI Window Main Title "Infinite App" Text Welcome Content "Welcome to InfiniteScript." End Button Start Text "Start" On Click Say "Started!" End End End End
Start with the beginner tutorial or dive into the complete language documentation.
Start Tutorial → Documentation