Code: Select all
Define v, *p
Debug TypeOf(v) ; return 21
Debug TypeOf(*p) ; ruturn 21
Debug #PB_Integer ; = 21
; both return as Type Integer!
Code: Select all
Define v, *p
Debug TypeOf(v) ; return 21
Debug TypeOf(*p) ; ruturn 21
Debug #PB_Integer ; = 21
; both return as Type Integer!