A structure can refer to itself using a pointer member, without causing any recursion problems.
You can use it as a node for linked lists, tree structures and networks.
Here is a silly example, but it tests the notation:
'11:38 03/12/2018
'UDT SELF REFERENCE TEST
type tt
int a,b,c
tt* t
end type
tt t
@t.t=@t
t={1,2,3}
print t.b
print t.t.b
print t.t.t.b