Creating Your First DSL Script
Flow Name and Structure
Simplest example:
@Init
Set("name", "DSL Forge!" ),
Log("Hello, {0}", Get("name"))@Init
Goto("@MainMenu")
@MainMenu
Log("Entered Main Menu")Last updated