Created
August 3, 2018 18:12
-
-
Save cramertj/d7b3d84dcab6c6e9a45842781df35a23 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| cargo-features = ["edition"] | |
| [package] | |
| name = "foo" | |
| edition = "2018" | |
| version = "0.1.0" | |
| [dependencies] | |
| rand = "0.5" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /// [link](::rand::random) | |
| pub fn foo() {} | |
| fn main() { | |
| println!("Hello, world!"); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment