toggle menu
kotlin-jupyter-kernel
0.12.0-335
jvm
switch theme
search in API
getting-started
/
org.jetbrains.kotlinx.jupyter.example
Package-level
declarations
Types
Types
Car
Link copied to clipboard
data
class
Car
(
val
model
:
String
,
val
inceptionYear
:
Int
,
val
owner
:
Person
)
Getting
Started
Integration
Link copied to clipboard
class
GettingStartedIntegration
:
JupyterIntegration
Marker
Annotation
Link copied to clipboard
annotation class
MarkerAnnotation
My
Class
Link copied to clipboard
class
MyClass
:
Renderable
Person
Link copied to clipboard
data
class
Person
(
val
name
:
String
,
val
lastName
:
String
,
val
age
:
Int
,
val
cars
:
MutableList
<
Car
>
=
mutableListOf()
)