Sign in
rust
/
rust
/
08650fbb506c44fbc95d91abfb7cd95a56bbff30
/
.
/
src
/
test
/
ui
/
threads-sendsync
/
yield2.rs
blob: 376faab0c48fef73fd819aecb5b377c3407f5cbc [
file
]
// run-pass
use
std
::
thread
;
pub
fn
main
()
{
let
mut
i
:
isize
=
0
;
while
i
<
100
{
i
=
i
+
1
;
println
!(
"{}"
,
i
);
thread
::
yield_now
();
}
}