mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-13 00:21:28 +00:00
7 lines
77 B
Kotlin
7 lines
77 B
Kotlin
package test
|
|
|
|
class TwoFields() {
|
|
var a: Int = 1
|
|
var b: Short = 2;
|
|
}
|