
.progressindicator.1.0.0.source-code.Icon.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of progressindicator Show documentation
Show all versions of progressindicator Show documentation
ProgressIndicator implements different indicators to track a progress.
The newest version!
/* Copyright 2016-present The KotlinNLP Authors. All Rights Reserved.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, you can obtain one at http://mozilla.org/MPL/2.0/.
* ------------------------------------------------------------------*/
import com.kotlinnlp.progressindicator.ProgressIndicatorIcon
/**
*
*/
fun main(args: Array) {
val loopSize = 1000
val progressIndicator = ProgressIndicatorIcon(loopSize)
(0 until loopSize).forEach({
progressIndicator.tick()
Thread.sleep(30)
})
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy