mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 00:21:29 +00:00
11 lines
145 B
Kotlin
Vendored
11 lines
145 B
Kotlin
Vendored
|
|
@Name("Mary")
|
|
@Age(18)
|
|
class Mary
|
|
|
|
@Name("Kate")
|
|
@Age(22)
|
|
class Kate
|
|
|
|
annotation class Name(val name: String)
|
|
annotation class Age(val age: Int) |