7 lines
111 B
Crystal
7 lines
111 B
Crystal
class Node (T)
|
|
property data : T
|
|
property next : Node(T)?
|
|
|
|
def initialize (@data, @next = nil)
|
|
end
|
|
end
|