Kotlin 1.4.20 Migration #134
12
CHANGELOG.md
12
CHANGELOG.md
@ -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
|
||||||
|
@ -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")
|
||||||
|
|
||||||
|
@ -0,0 +1,8 @@
|
|||||||
|
package scientifik.kmath.operations
|
||||||
|
|
||||||
|
fun main() {
|
||||||
|
val res = BigIntField {
|
||||||
|
number(1) * 2
|
||||||
|
}
|
||||||
|
println("bigint:$res")
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user