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