Product DocumentationDeveloper GuidesODSL LanguageCommandsAll CommandsprintprintPrints a message to the consoleSyntaxprint messageDescriptionThe print command prints a message to the console. The message can be a string, variable or expression.Examplesa = "example"print aexampleprint "This is an " + aThis is an example