Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
vendor
/
target-lexicon-0.12.16
/
examples
/
host.rs
blob: 055e0bffdbbaee65d8a1fd4c53db10bd61cef361 [
file
] [
log
] [
blame
] [
edit
]
extern
crate target_lexicon
;
use
target_lexicon
::
HOST
;
fn
main
()
{
println
!(
"{}"
,
HOST
.
pointer_width
()
.
expect
(
"architecture should be known"
)
.
bytes
()
);
}