mirror of
https://github.com/dtolnay/cargo-expand.git
synced 2025-04-03 21:07:37 +03:00
Add example output to readme
This commit is contained in:
parent
c4ba40d1cf
commit
0ee62f0689
1 changed files with 33 additions and 0 deletions
33
README.md
33
README.md
|
@ -16,6 +16,39 @@ This command optionally uses
|
|||
to format the expanded output. If `rustfmt` is not available, the expanded code
|
||||
is not formatted. Install `rustfmt` with `cargo install rustfmt`.
|
||||
|
||||
## Example
|
||||
|
||||
`$ cat src/main.rs`
|
||||
|
||||
> ```rust
|
||||
fn main() {
|
||||
println!("Hello, world!");
|
||||
}
|
||||
```
|
||||
|
||||
`$ cargo expand`
|
||||
|
||||
> ```rust
|
||||
#![feature(prelude_import)]
|
||||
#![no_std]
|
||||
#[prelude_import]
|
||||
use std::prelude::v1::*;
|
||||
#[macro_use]
|
||||
extern crate std as std;
|
||||
fn main() {
|
||||
::std::io::_print(::std::fmt::Arguments::new_v1({
|
||||
static __STATIC_FMTSTR:
|
||||
&'static [&'static str]
|
||||
=
|
||||
&["Hello, world!\n"];
|
||||
__STATIC_FMTSTR
|
||||
},
|
||||
&match () {
|
||||
() => [],
|
||||
}));
|
||||
}
|
||||
```
|
||||
|
||||
## License
|
||||
|
||||
Licensed under either of
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue