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 Type for details.

Details

$ x=3;
$ x;
3

$ typestr x;
INT

$ typestr 1.2;
DOUBLE

$ typestr `Hello;
STRING