Kotlin 1.4.20 Migration #134

Closed
CommanderTvis wants to merge 12 commits from kotlin14 into dev
3 changed files with 21 additions and 1 deletions
Showing only changes of commit 2d87108e78 - Show all commits

View File

@ -1,6 +1,18 @@
# KMath # KMath
## [Unreleased] ## [Unreleased]
### Added
### Changed
### Deprecated
### Removed
### Fixed
### Security
## [0.1.4]
### Added ### Added
- Functional Expressions API - Functional Expressions API

View File

@ -1,6 +1,6 @@
plugins { id("ru.mipt.npm.publish") apply false } plugins { id("ru.mipt.npm.publish") apply false }
val kmathVersion: String by extra("0.1.4-dev-8") val kmathVersion: String by extra("0.1.4")
val bintrayRepo: String by extra("scientifik") val bintrayRepo: String by extra("scientifik")
val githubProject: String by extra("kmath") val githubProject: String by extra("kmath")

View File

@ -0,0 +1,8 @@
package scientifik.kmath.operations
fun main() {
val res = BigIntField {
number(1) * 2
}
println("bigint:$res")
}