In this article
The following types of data are supported:
String - A string is text that you want the compiler to consider "as is".
var Welcome : String = ”Welcome to this Reportal Scripting Course!”Integers - A natural number
var Age : int = ’27’;Characters - Letters or symbols
var Gender : char = ’M’;Boolean - A variable is referred to as Boolean if it can hold only one of two values: true or false.
var isReady : Boolean;