typestr

Syntax

typestr(X)

Arguments

X can be any data type that the system supports.

Details

Return a string indicating the data type of X. Please refer to Data Types for details.

Examples

x=3;
x;
// output
3

typestr x;
// output
INT

typestr 1.2;
// output
DOUBLE

typestr `Hello;
// output
STRING