We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4fd5602 commit 3077870Copy full SHA for 3077870
docs/StardustDocs/topics/setup/SetupGradle.md
@@ -71,18 +71,19 @@ For flexible dependencies configuration see [Custom configuration](SetupCustomGr
71
72
## Hello World
73
74
-Let’s create your first [`DataFrame`](DataFrame.md) in the notebook — a simple "Hello, World!" style example:
+Let’s create your first [`DataFrame`](DataFrame.md) — a simple "Hello, World!" style example:
75
76
```kotlin
77
import org.jetbrains.kotlinx.dataframe.api.dataFrameOf
78
+import org.jetbrains.kotlinx.dataframe.api.print
79
80
fun main() {
81
val df = dataFrameOf(
82
"name" to listOf("Alice", "Bob"),
83
"age" to listOf(25, 30)
84
)
85
- println(df)
86
+ df.print()
87
}
88
```
89
0 commit comments