-
-
Save cbeust/9ebbafb9014929681ea85b270002a7b6 to your computer and use it in GitHub Desktop.
This file contains 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
val node = Node(“Root”, listOf( | |
Node(“A”, listOf( | |
Node(“A1”), | |
Node(“A2”), | |
Node(“A3”)) | |
), | |
Node(“B”, listOf( | |
Node(“B1”), | |
Node(“B2”, listOf( | |
Node(“B21”), | |
Node(“B22”)) | |
))))) | |
displayGraph(listOf(node)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment