type( ) 函数示例

close databases
open database (home( ) + 'samples\data\testdata')
use customer  &&打开“customer”表
clear
? type('customer.contact')  &&显示“c”
? type('(12 * 3) + 4')  &&显示“n”
? type('date( )')  && 显示“d”
? type('.f. or .t.')  && 显示“l”
? type('answer=42')  && 显示“u”
? type('$19.99')  && 显示“y”