Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
vendor
/
indicatif-0.17.8
/
examples
/
single.rs
blob: 6e921e54f5c96c0ccaf0052eff8a8a65d942448a [
file
] [
log
] [
blame
] [
edit
]
use
std
::
thread
;
use
std
::
time
::
Duration
;
use
indicatif
::
ProgressBar
;
fn
main
()
{
let
pb
=
ProgressBar
::
new
(
1024
);
for
_ in
0.
.
1024
{
thread
::
sleep
(
Duration
::
from_millis
(
5
));
pb
.
inc
(
1
);
}
pb
.
finish_with_message
(
"done"
);
}