Guest User

Untitled

a guest
Feb 15th, 2019
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.11 KB | None | 0 0
  1. public class ListNode<T> {
  2. var value: T
  3. var next: ListNode?
  4.  
  5. public init(value: T) {
  6. self.value = value
  7. }
Add Comment
Please, Sign In to add comment