Tintware Documentation : Tint Programming Language : Tint Reference : Strings : defSyntax#(def,%name) #(def,%name,%value) #(def,%name,%value,%attribute) %name is the name of the string to be defined. %value is the value for the string. %attribute is one of string, integer, boolean, double, datetime, hex-binary, or base64-binary. A new string will be created with the specified name; if a value is specified, then the string will have that value, otherwise, the string will be empty. If an object with the specified name already exists, it will be freed before the new string is created. If an attribute is specified, then the string will have that attribute. Example#(def,a-string,a-value) #(a-string) a-value |