toggle menu
kotlin-jupyter-kernel
0.12.0-335
jvm
switch theme
search in API
getting-started
/
org.jetbrains.kotlinx.jupyter.example
/
Person
Person
data
class
Person
(
val
name
:
String
,
val
lastName
:
String
,
val
age
:
Int
,
val
cars
:
MutableList
<
Car
>
=
mutableListOf()
)
Members
Constructors
Person
Link copied to clipboard
constructor
(
name
:
String
,
lastName
:
String
,
age
:
Int
,
cars
:
MutableList
<
Car
>
=
mutableListOf()
)
Properties
age
Link copied to clipboard
val
age
:
Int
cars
Link copied to clipboard
val
cars
:
MutableList
<
Car
>
last
Name
Link copied to clipboard
val
lastName
:
String
name
Link copied to clipboard
val
name
:
String