11 lines
148 B
Text
11 lines
148 B
Text
class Link
|
|
{
|
|
prop int Item;
|
|
prop Link Next;
|
|
|
|
constructor(int item, Link next)
|
|
{
|
|
Item := item;
|
|
Next := next
|
|
}
|
|
}
|