Skip to content

Instantly share code, notes, and snippets.

@twof
Created January 27, 2017 08:11
Show Gist options
  • Select an option

  • Save twof/d6adc0c9e4d12742fd0949b60c562d25 to your computer and use it in GitHub Desktop.

Select an option

Save twof/d6adc0c9e4d12742fd0949b60c562d25 to your computer and use it in GitHub Desktop.
class Node{
var content: Int
var next: Node
init(content: Int, next: Node){
self.content = content
self.next = next
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment