xref
: /
wasmtime-44.0.1
/
crates
/
test-programs
/
src
/
bin
/
p2_cli_sleep.rs
(revision bedbcd85)
Home
History
Annotate
Line#
Scopes#
Navigate#
Raw
Download
current directory
1
use
std
::
time
::
Duration
;
2
3
fn
main
() {
4
std
::
thread
::
sleep
(
Duration
::
from_nanos
(
100
));
5
}
6