13 lines
180 B
Kotlin
13 lines
180 B
Kotlin
package net.sergeych.lyng
|
|
|
|
|
|
|
|
class Symbols(
|
|
unitType: UnitType,
|
|
val name: String,
|
|
val x: TypeDecl
|
|
) {
|
|
enum class UnitType {
|
|
Module, Function, Lambda
|
|
}
|
|
} |