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