Skip to content

Commit 3077870

Browse files
authored
Update SetupGradle.md
1 parent 4fd5602 commit 3077870

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

docs/StardustDocs/topics/setup/SetupGradle.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,18 +71,19 @@ For flexible dependencies configuration see [Custom configuration](SetupCustomGr
7171

7272
## Hello World
7373

74-
Let’s create your first [`DataFrame`](DataFrame.md) in the notebook — a simple "Hello, World!" style example:
74+
Let’s create your first [`DataFrame`](DataFrame.md) — a simple "Hello, World!" style example:
7575

7676
```kotlin
7777
import org.jetbrains.kotlinx.dataframe.api.dataFrameOf
78+
import org.jetbrains.kotlinx.dataframe.api.print
7879

7980
fun main() {
8081
val df = dataFrameOf(
8182
"name" to listOf("Alice", "Bob"),
8283
"age" to listOf(25, 30)
8384
)
8485

85-
println(df)
86+
df.print()
8687
}
8788
```
8889

0 commit comments

Comments
 (0)