Product DocumentationDeveloper GuidesODSL LanguageCommandsAll CommandsprintOn this pageprint Prints a message to the console Syntax print message Description The print command prints a message to the console. The message can be a string, variable or expression. Examples a = "example"print a example print "This is an " + a This is an example