From ca9714824541af6bec6ae6bef9611d3bc2e0288b Mon Sep 17 00:00:00 2001 From: Philipp Oppermann Date: Sat, 25 Mar 2023 18:44:27 +0100 Subject: [PATCH] Remove the dependency on the standard library --- src/main.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main.rs b/src/main.rs index e7a11a96..21638f70 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,3 +1,3 @@ -fn main() { - println!("Hello, world!"); -} +#![no_std] + +fn main() {}