From fcb2ce5d3935a2e6c095af32a783a69cfc5946cb Mon Sep 17 00:00:00 2001 From: Joshua Byrd Date: Wed, 20 Dec 2023 17:18:32 +1000 Subject: [PATCH] Remove extern --- README.md | 8 -------- 1 file changed, 8 deletions(-) diff --git a/README.md b/README.md index 302264d..dabbe03 100644 --- a/README.md +++ b/README.md @@ -15,19 +15,11 @@ Put the following in your `Cargo.toml`: ferris-says = "0.2" ``` -Then import the crate with: - -```rust -extern crate ferris_says; -``` - ### Example The following bit of code will write the byte string to STDOUT ```rust -extern crate ferris_says; - use ferris_says::say; use std::io::{ stdout, BufWriter };