3 lines
79 B
Raku
3 lines
79 B
Raku
method insert ($value) {
|
|
$.next = Cell.new(:$value, :$.next)
|
|
}
|