kodept 0.2.3

Simple compiler with dependent types support in mind
Documentation
1
2
3
4
5
6
7
8
9
10
module Prelude {
}

module Testing {
    fun test(m) {
        val y = m
        val x = y(1)
        x
    }
}