Sign in
rust
/
book
/
refs/heads/fix-inline-code-dprint
/
.
/
listings
/
ch03-common-programming-concepts
/
no-listing-08-boolean
/
src
/
main.rs
blob: 2c56e62f944b50fbfe6697705b39c576d5b34fe1 [
file
] [
edit
]
fn
main
()
{
let
t
=
true
;
let
f
:
bool
=
false
;
// with explicit type annotation
}