21: Added path function to TreeNode (#22)

Path refers to the sequence of nodes along the edges of a tree.
This commit is contained in:
2023-02-22 14:29:22 +01:00
committed by GitHub
parent 8a4e677ebf
commit 4aacbc9dbc
10 changed files with 79 additions and 7 deletions

View File

@@ -135,7 +135,11 @@ kotlin {
implementation(kotlin("test"))
}
}
val jvmMain by getting
val jvmMain by getting {
dependencies {
implementation(kotlin("script-runtime"))
}
}
val jvmTest by getting
val jsMain by getting
val jsTest by getting