From 32f3a853f18b003647c38df9becdec676eac5097 Mon Sep 17 00:00:00 2001 From: Yoh Deadfall Date: Wed, 25 Sep 2024 22:38:50 +0300 Subject: [PATCH] Fixed compilation on Getting Started page --- src/guide-start.md | 1 + 1 file changed, 1 insertion(+) diff --git a/src/guide-start.md b/src/guide-start.md index 19c4b9d..9b292b0 100644 --- a/src/guide-start.md +++ b/src/guide-start.md @@ -11,6 +11,7 @@ cargo add rand --features small_rng Now, paste the following into `src/main.rs`: ```rust +# extern crate rand; use rand::prelude::*; fn main() {