5 lines
106 B
Factor
5 lines
106 B
Factor
|
|
TUPLE: linked-list data next ;
|
||
|
|
|
||
|
|
: <linked-list> ( data -- linked-list )
|
||
|
|
linked-list new swap >>data ;
|