xref
: /
wasmtime-44.0.1
/
crates
/
test-programs
/
src
/
bin
/
dwarf_simple.rs
(revision fcf1054b)
Home
History
Annotate
Line#
Scopes#
Navigate#
Raw
Download
current directory
main()
1
fn
main
() {
2
let
mut
a
=
100
;
3
a
+=
10
;
4
let
b
=
a
+
7
;
5
println
!(
"{b}"
);
6
}
7