Skip to content

Instantly share code, notes, and snippets.

View Drarig29's full-sized avatar
🤠
Exploring the TypeScript AST

Corentin Girard Drarig29

🤠
Exploring the TypeScript AST
View GitHub Profile
#!/usr/bin/env python3
# coding: utf-8
class Node:
def __init__(self, value, previous, next_):
self.value = value
self.previous = previous
self.next = next_