[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

6.7.1 newstruct

newstruct(name)
:: Creates a new structure object whose name is name.

return
structure
name
string

 
[0] struct list {h,t};    
0
[1] A=newstruct(list);
{0,0}
[2] A->t = newstruct(list);
{0,0}
[3] A; 
{0,{0,0}}
[4] A->h = 1;
1
[5] A->t->h = 2;
2
[6] A->t->t = 3;
3
[7] A;
{1,{2,3}}

References
6.7.2 arfreg, 4.2.9 structure definition



This document was generated by root on March, 5 2004 using texi2html