Abstract type: Difference between revisions

Line 386:
'never directly referenced in the rest of this program, even though memory has been allocated for it and its
'constituent elements.
Dim j As f 'This is a second instance of the user-defined type "f", showing that "f" has been pseudo-abstracted, even
'though "f" does exist in its own right in memory.
j.g.e = "forty five"
 
Print a
Line 395 ⟶ 398:
'nor contain a typeOf() function, it is unclear of what type "g.e" is, although it is suspected that it is either
'an Integer or a String, being a use of type "c"'s element "d" or "e".
Print j.g.e
System </lang>
{{out}}
Line 402 ⟶ 406:
0
thirty five
0
0</pre>
forty five</pre>
 
=={{header|C}}==