Created
January 27, 2017 08:11
-
-
Save twof/d6adc0c9e4d12742fd0949b60c562d25 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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