Node.py

From WLCS
Revision as of 23:19, 17 October 2013 by Admin (talk | contribs) (Created page with "<syntaxhighlight lang="Python"> class Node: def __init__(self): self.data = 0 self.next = None </syntaxhighlight>")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
class Node:
    def __init__(self):
        self.data = 0
        self.next = None